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 6eabb45 commit 4e4c189Copy full SHA for 4e4c189
python/plugins/processing/modeler/ModelerParametersDialog.py
@@ -314,7 +314,7 @@ def createAlgorithm(self):
314
outputs = {}
315
for dest in self._alg.destinationParameterDefinitions():
316
if not dest.flags() & QgsProcessingParameterDefinition.FlagHidden:
317
- name = str(self.valueItems[dest.name()].text())
+ name = self.valueItems[dest.name()].text()
318
if name.strip() != '':
319
output = QgsProcessingModelOutput(name, name)
320
output.setChildId(alg.childId())
0 commit comments