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