Skip to content

Commit

Permalink
[processing] fix parameter value retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jan 27, 2017
1 parent 840379d commit 6630eed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -262,7 +262,7 @@ def save(self):
self.parent.lblProgress.setText( self.parent.lblProgress.setText(
self.tr('<b>Missing parameter value: %s (row %d)</b>') % (param.description, row + 1)) self.tr('<b>Missing parameter value: %s (row %d)</b>') % (param.description, row + 1))
return return
algParams[param.name] = unicode(param.value()) algParams[param.name] = unicode(param.value)
col += 1 col += 1
for out in alg.outputs: for out in alg.outputs:
if out.hidden: if out.hidden:
Expand Down

0 comments on commit 6630eed

Please sign in to comment.