Skip to content
Snippets Groups Projects
Commit d4364ea1 authored by Luke Campagnola's avatar Luke Campagnola
Browse files

Fix MultiPlotWidget wrapping methods incorrectly.

parent 21639196
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ class MultiPlotWidget(GraphicsView):
m = getattr(self.mPlotItem, attr)
if hasattr(m, '__call__'):
return m
raise NameError(attr)
raise AttributeError(attr)
def widgetGroupInterface(self):
return (None, MultiPlotWidget.saveState, MultiPlotWidget.restoreState)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment