Commit a1b21e05 authored by Guillaume Seguin's avatar Guillaume Seguin

Make cython failure verbose (#641, #642)

parent fb71e519
......@@ -25,7 +25,8 @@ try:
from Cython.Build import cythonize
extensions = cythonize("printrun/gcoder_line.pyx")
from Cython.Distutils import build_ext
except ImportError:
except ImportError, e:
print "WARNING: Failed to cythonize: %s" % e
extensions = None
build_ext = None
......
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