Author: Philip Jenvey <[email protected]>
Branch: py3k
Changeset: r66887:88b27fe9402e
Date: 2013-09-09 18:00 -0700
http://bitbucket.org/pypy/pypy/changeset/88b27fe9402e/
Log: translation fix
diff --git a/pypy/interpreter/baseobjspace.py b/pypy/interpreter/baseobjspace.py
--- a/pypy/interpreter/baseobjspace.py
+++ b/pypy/interpreter/baseobjspace.py
@@ -82,7 +82,7 @@
return space.unicode_w(space.getattr(self, space.wrap('__name__')))
except OperationError, e:
if e.match(space, space.w_TypeError) or e.match(space,
space.w_AttributeError):
- return '?'
+ return u'?'
raise
def getaddrstring(self, space):
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit