Skip to content

Commit

Permalink
Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-morvan committed Sep 8, 2016
1 parent f38e03b commit d85de7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Expand Up @@ -1053,7 +1053,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 d85de7c

Please sign in to comment.