Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix multiple ParameterField handling
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
python/plugins/processing/algs/grass7/Grass7Algorithm.py
|
@@ -540,8 +540,8 @@ def processCommand(self, parameters, context, delOutputs=False): |
|
|
) |
|
|
# 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, |
|
|