Commit 5faa2e4f by peastman

Merge pull request #69 from peastman/master

Fixed an incorrect argument name
parents 19a95810 10f7227b
......@@ -53,7 +53,7 @@ def startPageCallback(parameters, handler):
global fixer
if 'type' in parameters:
if parameters.getfirst('type') == 'local':
fixer = PDBFixer(file=parameters['pdbfile'].value.decode().splitlines())
fixer = PDBFixer(pdbfile=parameters['pdbfile'].value.decode().splitlines())
else:
id = parameters.getfirst('pdbid')
try:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment