[pypy-commit] pypy default: fix pypy_find_stdlib(): app_main.py was moved up a level in split-rpython

bdkearns noreply at buildbot.pypy.org
Sun Jan 27 08:50:36 CET 2013


Author: Brian Kearns <bdkearns at gmail.com>
Branch: 
Changeset: r60511:1fd8960987fb
Date: 2013-01-26 18:50 -0500
http://bitbucket.org/pypy/pypy/changeset/1fd8960987fb/

Log:	fix pypy_find_stdlib(): app_main.py was moved up a level in split-
	rpython

diff --git a/pypy/interpreter/app_main.py b/pypy/interpreter/app_main.py
--- a/pypy/interpreter/app_main.py
+++ b/pypy/interpreter/app_main.py
@@ -713,7 +713,7 @@
     def pypy_find_stdlib(s):
         from os.path import abspath, join, dirname as dn
         thisfile = abspath(__file__)
-        root = dn(dn(dn(dn(thisfile))))
+        root = dn(dn(dn(thisfile)))
         return [join(root, 'lib-python', '2.7'),
                 join(root, 'lib_pypy')]
     


More information about the pypy-commit mailing list