[processing] fix error in MultipleInputWidgetWrapper

This commit is contained in:
nirvn 2016-12-20 14:20:46 +07:00
parent e338a90c80
commit c365439140

View File

@ -500,7 +500,7 @@ class MultipleInputWidgetWrapper(WidgetWrapper):
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):