We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1132eb9 commit 950a191Copy full SHA for 950a191
python/plugins/processing/gui/OutputSelectionPanel.py
@@ -237,6 +237,8 @@ def getValue(self):
237
result = exp.evaluate(context)
238
if not exp.hasEvalError():
239
fileName = result
240
+ if fileName.startswith("[") and fileName.endswith("]"):
241
+ fileName = fileName[1:-1]
242
if fileName.strip() in ['', self.SAVE_TO_TEMP_FILE]:
243
value = None
244
elif fileName.startswith('memory:'):
0 commit comments