Skip to content

Commit 26f06b7

Browse files
arnaud-morvanalexbruy
authored andcommitted
Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
(cherry picked from commit d85de7c)
1 parent 0a0544e commit 26f06b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/core/parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ def __init__(self, name='', description='', left=None, right=None,
885885
self.enabledPredicates = self.predicates
886886

887887
def getValueAsCommandLineParameter(self):
888-
return '"' + unicode(self.value) + '"'
888+
return unicode(self.value)
889889

890890
def setValue(self, value):
891891
if value is None:

0 commit comments

Comments
 (0)