summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Demeyer <jdemeyer@cage.ugent.be>2016-06-08 15:02:53 +0200
committerStefan Behnel <stefan_ml@behnel.de>2016-07-15 08:16:36 +0200
commit31e2afbccc819615eb700697a7cc5bae979e2f6b (patch)
treebe60c7ff22cac784d810b639f345ea3a0a1bea26
parentc552e348691f8cf27afabb9f09679c322380a90d (diff)
downloadcython-31e2afbccc819615eb700697a7cc5bae979e2f6b.tar.gz
Improve "missing cimport" message
-rw-r--r--Cython/Build/Dependencies.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Build/Dependencies.py b/Cython/Build/Dependencies.py
index ea560e29f..42aacf8cc 100644
--- a/Cython/Build/Dependencies.py
+++ b/Cython/Build/Dependencies.py
@@ -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