From: Stefan Behnel Date: Mon, 21 Apr 2008 05:52:43 +0000 (+0200) Subject: typo (bug 220109) X-Git-Tag: 0.9.6.14~20^2~30 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c33942ddf949cfc5b416284647dbb189df7409b7;p=cython.git typo (bug 220109) --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index bec4b826..a6d0bd7b 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -776,7 +776,7 @@ class NameNode(AtomicExprNode): try: return denv.lookup(self.name) except KeyError: - error(self.pos, "Compile-time name '%s' not defined", self.name) + error(self.pos, "Compile-time name '%s' not defined" % self.name) def coerce_to(self, dst_type, env): # If coercing to a generic pyobject and this is a builtin