Skip to content

Commit

Permalink
[processing] fixed error in constructor of ParameterTableField
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Oct 5, 2016
1 parent cdcc01e commit 0ea6629
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 @@ -1284,7 +1284,7 @@ def __init__(self, name='', description='', parent=None, datatype=-1,
optional=False, multiple = False):
Parameter.__init__(self, name, description, None, optional)
self.parent = parent
self.multiple = True
self.multiple = multiple
self.datatype = int(datatype)

def getValueAsCommandLineParameter(self):
Expand Down

0 comments on commit 0ea6629

Please sign in to comment.