[pypy-svn] r41141 - pypy/dist/pypy/lib

afayolle at codespeak.net afayolle at codespeak.net
Fri Mar 23 09:25:13 CET 2007


Author: afayolle
Date: Fri Mar 23 09:25:12 2007
New Revision: 41141

Modified:
   pypy/dist/pypy/lib/aop.py
Log:
(fijal, afayolle) remove leftover call to logging.error

Modified: pypy/dist/pypy/lib/aop.py
==============================================================================
--- pypy/dist/pypy/lib/aop.py	(original)
+++ pypy/dist/pypy/lib/aop.py	Fri Mar 23 09:25:12 2007
@@ -531,7 +531,7 @@
             self._curr_aspect = None
             return ast
         except Exception, exc:
-            error('%s: %s in weave', exc.__class__.__name__, exc)
+            print '%s: %s in weave' % ( exc.__class__.__name__, exc)
             return ast
     def _clear_all(self):
         self.advices = []



More information about the Pypy-commit mailing list