summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2015-09-21 22:52:22 +0200
committerStefan Behnel <stefan_ml@behnel.de>2015-09-21 22:52:22 +0200
commita8fbae1dae4e1434550a7e454428e769221a45df (patch)
tree46d4bc8c276c413a80a79c6a803748e18e255617
parentd6cac0ef8598c5b50db6f36b17e6f2f3f6880e4b (diff)
downloadcython-a8fbae1dae4e1434550a7e454428e769221a45df.tar.gz
fix error output in cython.inline()
-rw-r--r--Cython/Build/Inline.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Build/Inline.py b/Cython/Build/Inline.py
index c520ce4cc..5b220a8e6 100644
--- a/Cython/Build/Inline.py
+++ b/Cython/Build/Inline.py
@@ -140,7 +140,7 @@ def cython_inline(code,
elif symbol in globals:
kwds[symbol] = globals[symbol]
else:
- print("Couldn't find ", symbol)
+ print("Couldn't find %r" % symbol)
except AssertionError:
if not quiet:
# Parsing from strings not fully supported (e.g. cimports).