Skip to content

Commit 1093866

Browse files
committed
[processing] allow blank spaces in script parameters definition
1 parent f4e95c4 commit 1093866

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

python/plugins/processing/script/ScriptAlgorithm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,9 @@ def processAlgorithm(self, progress):
247247
ns = {}
248248
ns['progress'] = progress
249249

250+
print self.parameters
250251
for param in self.parameters:
252+
print param.name
251253
ns[param.name] = param.value
252254

253255
for out in self.outputs:

0 commit comments

Comments
 (0)