[pypy-svn] r76190 - pypy/branch/unicode_filename-2/pypy/rpython/module

afa at codespeak.net afa at codespeak.net
Tue Jul 13 19:45:29 CEST 2010


Author: afa
Date: Tue Jul 13 19:45:27 2010
New Revision: 76190

Modified:
   pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py
Log:
Fix translation on non-windows platforms


Modified: pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py	(original)
+++ pypy/branch/unicode_filename-2/pypy/rpython/module/ll_os.py	Tue Jul 13 19:45:27 2010
@@ -37,7 +37,7 @@
     @argnums is the list of positions of unicode strings
     """
     if not condition:
-        registering(None, condition=False)
+        return registering(None, condition=False)
 
     def unicodefunc(*args):
         return func(*args)



More information about the Pypy-commit mailing list