Commit fcbd113a authored by Guillaume Seguin's avatar Guillaume Seguin

Add warning when gcoder_line is not available

parent d820370a
......@@ -59,7 +59,8 @@ try:
import gcoder_line
Line = gcoder_line.GLine
LightLine = gcoder_line.GLightLine
except:
except Exception, e:
logging.warning("Memory-efficient GCoder implementation unavailable: %s" % e)
Line = PyLine
LightLine = PyLightLine
......
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