Skip to content

Commit 6fe459d

Browse files
committed
[processing] remove extra quotes when restoring batch process from file
(fix #16309)
1 parent bc0c3a2 commit 6fe459d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/plugins/processing/gui/BatchPanel.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def load(self):
157157
if param.hidden:
158158
continue
159159
if param.name in params:
160-
value = params[param.name]
160+
value = params[param.name].strip('"')
161161
wrapper = self.wrappers[row][column]
162162
wrapper.setValue(value)
163163
column += 1
@@ -166,7 +166,7 @@ def load(self):
166166
if out.hidden:
167167
continue
168168
if out.name in outputs:
169-
value = outputs[out.name]
169+
value = outputs[out.name].strip('"')
170170
widget = self.tblParameters.cellWidget(row, column)
171171
widget.setValue(value)
172172
column += 1

0 commit comments

Comments
 (0)