Skip to content

Commit d85de7c

Browse files
committed
Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
1 parent f38e03b commit d85de7c

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
@@ -1053,7 +1053,7 @@ def __init__(self, name='', description='', left=None, right=None,
10531053
self.enabledPredicates = self.predicates
10541054

10551055
def getValueAsCommandLineParameter(self):
1056-
return '"' + unicode(self.value) + '"'
1056+
return unicode(self.value)
10571057

10581058
def setValue(self, value):
10591059
if value is None:

0 commit comments

Comments
 (0)