[pypy-svn] r59148 - pypy/branch/cbuild-refactor/pypy/module/_minimal_curses

fijal at codespeak.net fijal at codespeak.net
Thu Oct 16 16:59:13 CEST 2008


Author: fijal
Date: Thu Oct 16 16:59:12 2008
New Revision: 59148

Modified:
   pypy/branch/cbuild-refactor/pypy/module/_minimal_curses/interp_curses.py
Log:
this module has changed by a bit...


Modified: pypy/branch/cbuild-refactor/pypy/module/_minimal_curses/interp_curses.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/module/_minimal_curses/interp_curses.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/module/_minimal_curses/interp_curses.py	Thu Oct 16 16:59:12 2008
@@ -22,7 +22,7 @@
 
 def convert_error(space, error):
     msg = error.msg
-    w_module = space.getbuiltinmodule('_curses')
+    w_module = space.getbuiltinmodule('_minimal_curses')
     w_exception_class = space.getattr(w_module, space.wrap('error'))
     w_exception = space.call_function(w_exception_class, space.wrap(msg))
     return OperationError(w_exception_class, w_exception)



More information about the Pypy-commit mailing list