Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] allow blank spaces in script parameters definition
  • Loading branch information
volaya committed May 30, 2014
1 parent f4e95c4 commit 1093866
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/script/ScriptAlgorithm.py
Expand Up @@ -247,7 +247,9 @@ def processAlgorithm(self, progress):
ns = {}
ns['progress'] = progress

print self.parameters
for param in self.parameters:
print param.name
ns[param.name] = param.value

for out in self.outputs:
Expand Down

0 comments on commit 1093866

Please sign in to comment.