[pypy-svn] r76216 - pypy/branch/unicode_filename-2/pypy/module/posix

afa at codespeak.net afa at codespeak.net
Wed Jul 14 21:54:04 CEST 2010


Author: afa
Date: Wed Jul 14 21:54:02 2010
New Revision: 76216

Modified:
   pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py
Log:
Fix translation


Modified: pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py
==============================================================================
--- pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py	(original)
+++ pypy/branch/unicode_filename-2/pypy/module/posix/interp_posix.py	Wed Jul 14 21:54:02 2010
@@ -348,7 +348,7 @@
 def chdir(space, w_path):
     """Change the current working directory to the specified path."""
     try:
-        dispatch_filename(rposix.chdir)(space, wpath)
+        dispatch_filename(rposix.chdir)(space, w_path)
     except OSError, e:
         raise wrap_oserror2(space, e, w_path)
 chdir.unwrap_spec = [ObjSpace, W_Root]



More information about the Pypy-commit mailing list