Skip to content

Commit

Permalink
Revert "[Processing] None is the default value for parameters also fo…
Browse files Browse the repository at this point in the history
…r string"

This reverts commit ac4d776.

See discussion at #6943
  • Loading branch information
nyalldawson committed Jun 19, 2018
1 parent f4e49dd commit 10dd428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ class ParameterString(Parameter):
NEWLINE = '\n'
ESCAPED_NEWLINE = '\\n'

def __init__(self, name='', description='', default=None, multiline=False,
def __init__(self, name='', description='', default='', multiline=False,
optional=False, evaluateExpressions=False):
Parameter.__init__(self, name, description, default, optional)
self.multiline = parseBool(multiline)
Expand Down

0 comments on commit 10dd428

Please sign in to comment.