Commit 38a04744 authored by Matthias Urlichs's avatar Matthias Urlichs

super() calls need to use the correct class name

parent 1a65c0dc
......@@ -482,9 +482,9 @@ class StlPlaterPanel(PlaterPanel):
logging.warning(_("Failed to use simarrange for plating, "
"falling back to the standard method. "
"The error was: ") + e)
super(StlPlater, self).autoplate()
super(StlPlaterPanel, self).autoplate()
else:
super(StlPlater, self).autoplate()
super(StlPlaterPanel, self).autoplate()
def autoplate_simarrange(self):
logging.info(_("Autoplating using simarrange"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment