Commit 5d72608b authored by Robert Bradshaw's avatar Robert Bradshaw

Merge pull request #521 from jdemeyer/missing_cimport_message

Improve "missing cimport" message
parents 2f967a63 0f1057da
......@@ -535,7 +535,7 @@ class DependencyTree(object):
if pxd_file is not None:
pxd_list.append(pxd_file)
elif not self.quiet:
print("missing cimport in module '%s': %s" % (module, filename))
print("%s: cannot find cimported module '%s'" % (filename, module))
return tuple(pxd_list)
@cached_method
......
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