[pypy-commit] pypy default: Issue1742 resolved

arigo noreply at buildbot.pypy.org
Fri Apr 25 09:32:15 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r70962:a65f77b101c2
Date: 2014-04-25 09:31 +0200
http://bitbucket.org/pypy/pypy/changeset/a65f77b101c2/

Log:	Issue1742 resolved

	Fix the path after the directory structure change (thanks peter).

diff --git a/pypy/sandbox/pypy_interact.py b/pypy/sandbox/pypy_interact.py
--- a/pypy/sandbox/pypy_interact.py
+++ b/pypy/sandbox/pypy_interact.py
@@ -21,7 +21,7 @@
 """
 
 import sys, os
-sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', '..')))
+sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..')))
 from rpython.translator.sandbox.sandlib import SimpleIOSandboxedProc
 from rpython.translator.sandbox.sandlib import VirtualizedSandboxedProc
 from rpython.translator.sandbox.vfs import Dir, RealDir, RealFile


More information about the pypy-commit mailing list