Skip to content

Commit 34a8c8a

Browse files
committedSep 23, 2017
Fix exception when running alg with no parameters from toolbox
1 parent 9e36fd9 commit 34a8c8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/gui/ProcessingToolbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def executeAlgorithm(self):
299299
context = dataobjects.createContext(feedback)
300300
parameters = {}
301301
ret, results = execute(alg, parameters, context, feedback)
302-
handleAlgorithmResults(alg, parameters, context, feedback)
302+
handleAlgorithmResults(alg, context, feedback)
303303
feedback.close()
304304
if isinstance(item, TreeActionItem):
305305
action = item.action

0 commit comments

Comments
 (0)
Please sign in to comment.