Commit 3269eb2f authored by kliment's avatar kliment

Merge pull request #722 from smurfix/master

Add cairosvg to apt-get listing in readme, correct class name in super() call in stlplater
parents ace66376 38a04744
...@@ -23,7 +23,7 @@ A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/ ...@@ -23,7 +23,7 @@ A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/
You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using
1. `sudo apt-get install python-serial python-wxgtk2.8 python-pyglet python-numpy cython python-libxml2 python-gobject python-dbus python-psutil git` 1. `sudo apt-get install python-serial python-wxgtk2.8 python-pyglet python-numpy cython python-libxml2 python-gobject python-dbus python-psutil python-cairosvg git`
Clone the repository Clone the repository
......
...@@ -482,9 +482,9 @@ class StlPlaterPanel(PlaterPanel): ...@@ -482,9 +482,9 @@ class StlPlaterPanel(PlaterPanel):
logging.warning(_("Failed to use simarrange for plating, " logging.warning(_("Failed to use simarrange for plating, "
"falling back to the standard method. " "falling back to the standard method. "
"The error was: ") + e) "The error was: ") + e)
super(StlPlater, self).autoplate() super(StlPlaterPanel, self).autoplate()
else: else:
super(StlPlater, self).autoplate() super(StlPlaterPanel, self).autoplate()
def autoplate_simarrange(self): def autoplate_simarrange(self):
logging.info(_("Autoplating using simarrange")) 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