Skip to content

Commit

Permalink
Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
Browse files Browse the repository at this point in the history
(cherry picked from commit d85de7c)
  • Loading branch information
arnaud-morvan authored and alexbruy committed Sep 16, 2016
1 parent 11caf0a commit 901550f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Expand Up @@ -1079,7 +1079,7 @@ def __init__(self, name='', description='', left=None, right=None,
self.enabledPredicates = self.predicates

def getValueAsCommandLineParameter(self):
return '"' + unicode(self.value) + '"'
return unicode(self.value)

def setValue(self, value):
if value is None:
Expand Down

0 comments on commit 901550f

Please sign in to comment.