Skip to content

Commit

Permalink
Merge pull request #3471 from arnaud-morvan/processing_geometry_predi…
Browse files Browse the repository at this point in the history
…cate_as_commandline

[Processing] Fix ParameterGeometryPredicate.getValueAsCommandLineParameter
  • Loading branch information
volaya committed Sep 12, 2016
2 parents 6b8130d + d85de7c commit 074d22f
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 074d22f

Please sign in to comment.