[pypy-svn] r14496 - pypy/dist/pypy/rpython

arigo at codespeak.net arigo at codespeak.net
Mon Jul 11 13:54:45 CEST 2005


Author: arigo
Date: Mon Jul 11 13:54:44 2005
New Revision: 14496

Modified:
   pypy/dist/pypy/rpython/rpbc.py
Log:
Typo.


Modified: pypy/dist/pypy/rpython/rpbc.py
==============================================================================
--- pypy/dist/pypy/rpython/rpbc.py	(original)
+++ pypy/dist/pypy/rpython/rpbc.py	Mon Jul 11 13:54:44 2005
@@ -195,7 +195,7 @@
                     try:
                         thisattrvalue = getattr(pbc, attr)
                     except AttributeError:
-                        warning("PBC %r has no attribute %r" % (pbc, name))
+                        warning("PBC %r has no attribute %r" % (pbc, attr))
                         continue
                 llvalue = r_value.convert_const(thisattrvalue)
                 setattr(result, mangled_name, llvalue)



More information about the Pypy-commit mailing list