We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent bc0c3a2 commit 6fe459dCopy full SHA for 6fe459d
python/plugins/processing/gui/BatchPanel.py
@@ -157,7 +157,7 @@ def load(self):
157
if param.hidden:
158
continue
159
if param.name in params:
160
- value = params[param.name]
+ value = params[param.name].strip('"')
161
wrapper = self.wrappers[row][column]
162
wrapper.setValue(value)
163
column += 1
@@ -166,7 +166,7 @@ def load(self):
166
if out.hidden:
167
168
if out.name in outputs:
169
- value = outputs[out.name]
+ value = outputs[out.name].strip('"')
170
widget = self.tblParameters.cellWidget(row, column)
171
widget.setValue(value)
172
0 commit comments