[pypy-svn] r19047 - pypy/dist/pypy/interpreter

mwh at codespeak.net mwh at codespeak.net
Thu Oct 27 01:37:48 CEST 2005


Author: mwh
Date: Thu Oct 27 01:37:47 2005
New Revision: 19047

Modified:
   pypy/dist/pypy/interpreter/interactive.py
Log:
fix from pyflakes via Jerub.


Modified: pypy/dist/pypy/interpreter/interactive.py
==============================================================================
--- pypy/dist/pypy/interpreter/interactive.py	(original)
+++ pypy/dist/pypy/interpreter/interactive.py	Thu Oct 27 01:37:47 2005
@@ -77,7 +77,7 @@
             w_bases = s.getattr(w_clz, s.wrap("__bases__"))             
             bases_w = s.unpacktuple(w_bases)
 
-        except OperationError:
+        except error.OperationError:
             return words
 
         for w_clz in bases_w:



More information about the Pypy-commit mailing list