mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix multiple ParameterField handling
This commit is contained in:
parent
36311ff6af
commit
feaecea44d
@ -540,8 +540,8 @@ class Grass7Algorithm(QgsProcessingAlgorithm):
|
||||
)
|
||||
# For fields, we just translate as string
|
||||
elif isinstance(param, QgsProcessingParameterField):
|
||||
value = '{}'.format(
|
||||
self.parameterAsString(parameters, paramName, context)
|
||||
value = ','.join(
|
||||
self.parameterAsFields(parameters, paramName, context)
|
||||
)
|
||||
# For numbers and points, we translate as a string
|
||||
elif isinstance(param, (QgsProcessingParameterNumber,
|
||||
|
Loading…
x
Reference in New Issue
Block a user