Skip to content

Commit

Permalink
[processing] fix exception raising (fix #11842)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Dec 11, 2014
1 parent 8aaf8b5 commit c8b9018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/AlgorithmDialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def setParamValues(self):
continue
if not self.setParamValue(
param, self.mainWidget.valueItems[param.name]):
raise algHelp.InvalidParameterValue(param,
raise AlgorithmDialogBase.InvalidParameterValue(param,
self.mainWidget.valueItems[param.name])

for param in params:
Expand Down

0 comments on commit c8b9018

Please sign in to comment.