Skip to content

Commit

Permalink
[processing] fix error in MultipleInputWidgetWrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Dec 20, 2016
1 parent e338a90 commit c365439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/wrappers.py
Expand Up @@ -500,7 +500,7 @@ def refresh(self):
options = dataobjects.getTables(sorting=False)
else:
options = dataobjects.getVectorLayers([self.param.datatype], sorting=False)
opts = [self.getExtendedLayerName(opt) for opt in options]
opts = [getExtendedLayerName(opt) for opt in options]
self.widget.updateForOptions(opts)

def setValue(self, value):
Expand Down

0 comments on commit c365439

Please sign in to comment.