Skip to content

Commit

Permalink
[processing] fix incorrect parameter construction
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Dec 20, 2016
1 parent eab5ae2 commit 97780b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/core/parameters.py
Expand Up @@ -567,7 +567,7 @@ def fromScriptCode(self, line):
if definition.startswith("point"):
descName = _createDescriptiveName(name)
default = definition.strip()[len('point') + 1:] or None
return ParameterPoint(name, descName, default, isOptional)
return ParameterFixedTable(name, descName, default, isOptional)


class ParameterMultipleInput(ParameterDataObject):
Expand Down

1 comment on commit 97780b6

@m-kuhn
Copy link
Member

@m-kuhn m-kuhn commented on 97780b6 Dec 21, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This needs some more work, see https://travis-ci.org/#L850

Please sign in to comment.