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 4db8c9a commit 467d66a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -267,7 +267,7 @@ def save(self):
self.parent.lblProgress.setText(
self.tr('<b>Missing parameter value: %s (row %d)</b>') % (param.description, row + 1))
return
algParams[param.name] = unicode(param.value())
algParams[param.name] = unicode(param.value)
col += 1
for out in alg.outputs:
if out.hidden:
Expand Down

0 comments on commit 467d66a

Please sign in to comment.