Skip to content

Commit

Permalink
[processing] Fix restoring parameter values from batch panel load button
Browse files Browse the repository at this point in the history
Fixes #18236
  • Loading branch information
nyalldawson committed Feb 27, 2018
1 parent 6e44a27 commit 81d5364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -159,7 +159,7 @@ def load(self):
if param.isDestination():
continue
if param.name() in params:
value = params[param.name()].strip("'")
value = eval(params[param.name()])
wrapper = self.wrappers[row][column]
wrapper.setValue(value)
column += 1
Expand Down

0 comments on commit 81d5364

Please sign in to comment.