Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
(cherry picked from commit d85de7c)
  • Loading branch information
arnaud-morvan authored and alexbruy committed Sep 16, 2016
1 parent 0a0544e commit 26f06b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Expand Up @@ -885,7 +885,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 26f06b7

Please sign in to comment.