We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa4988 commit ad44a50Copy full SHA for ad44a50
python/plugins/processing/algs/saga/SagaAlgorithm.py
@@ -197,10 +197,10 @@ def processAlgorithm(self, progress):
197
if exportCommand is not None:
198
commands.append(exportCommand)
199
param.value = ";".join(layers)
200
- elif param.datatype in [dataobjects.TYPE_VECTOR_ANY,
201
- dataobjects.TYPE_VECTOR_LINE,
202
- dataobjects.TYPE_VECTOR_POLYGON,
203
- dataobjects.TYPE_VECTOR_POINT]:
+ elif param.datatype in [ParameterMultipleInput.TYPE_VECTOR_ANY,
+ ParameterMultipleInput.TYPE_VECTOR_LINE,
+ ParameterMultipleInput.TYPE_VECTOR_POLYGON,
+ ParameterMultipleInput.TYPE_VECTOR_POINT]:
204
for layerfile in layers:
205
layer = dataobjects.getObjectFromUri(layerfile, False)
206
if layer:
0 commit comments