Commit 962d37ca authored by Stefan Behnel's avatar Stefan Behnel

pyximport debug output fix

parent 538ae904
...@@ -269,7 +269,7 @@ class PyImporter(PyxImporter): ...@@ -269,7 +269,7 @@ class PyImporter(PyxImporter):
# prevent infinite recursion # prevent infinite recursion
return None return None
if DEBUG_IMPORT: if DEBUG_IMPORT:
print("trying import of module", fullname) print("trying import of module '%s'" % fullname)
if fullname in self.uncompilable_modules: if fullname in self.uncompilable_modules:
path, last_modified = self.uncompilable_modules[fullname] path, last_modified = self.uncompilable_modules[fullname]
try: try:
......
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