Commit c33942dd authored by Stefan Behnel's avatar Stefan Behnel

typo (bug 220109)

parent 575a8e7b
......@@ -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
......
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