Author: Brian Kearns <[email protected]>
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')]
     
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to