Skip to content

Commit

Permalink
[processing] remove extra quotes when restoring batch process from file
Browse files Browse the repository at this point in the history
(fix #16309)
  • Loading branch information
alexbruy committed May 13, 2017
1 parent bc0c3a2 commit 6fe459d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/gui/BatchPanel.py
Expand Up @@ -157,7 +157,7 @@ def load(self):
if param.hidden:
continue
if param.name in params:
value = params[param.name]
value = params[param.name].strip('"')
wrapper = self.wrappers[row][column]
wrapper.setValue(value)
column += 1
Expand All @@ -166,7 +166,7 @@ def load(self):
if out.hidden:
continue
if out.name in outputs:
value = outputs[out.name]
value = outputs[out.name].strip('"')
widget = self.tblParameters.cellWidget(row, column)
widget.setValue(value)
column += 1
Expand Down

0 comments on commit 6fe459d

Please sign in to comment.