Skip to content

Commit

Permalink
Fix exception when running alg with no parameters from toolbox
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 23, 2017
1 parent 9e36fd9 commit 34a8c8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ProcessingToolbox.py
Expand Up @@ -299,7 +299,7 @@ def executeAlgorithm(self):
context = dataobjects.createContext(feedback)
parameters = {}
ret, results = execute(alg, parameters, context, feedback)
handleAlgorithmResults(alg, parameters, context, feedback)
handleAlgorithmResults(alg, context, feedback)
feedback.close()
if isinstance(item, TreeActionItem):
action = item.action
Expand Down

0 comments on commit 34a8c8a

Please sign in to comment.