Skip to content

Commit c603134

Browse files
arnaud-morvanalexbruy
authored andcommitted
Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
(cherry picked from commit d85de7c)
1 parent 8eea065 commit c603134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/core/parameters.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1079,7 +1079,7 @@ def __init__(self, name='', description='', left=None, right=None,
10791079
self.enabledPredicates = self.predicates
10801080

10811081
def getValueAsCommandLineParameter(self):
1082-
return '"' + unicode(self.value) + '"'
1082+
return unicode(self.value)
10831083

10841084
def setValue(self, value):
10851085
if value is None:

0 commit comments

Comments
 (0)