Author: Brian Kearns <[email protected]> Branch: Changeset: r60747:1e66ac6b5318 Date: 2013-01-30 23:40 -0500 http://bitbucket.org/pypy/pypy/changeset/1e66ac6b5318/
Log: missing sys.path line diff --git a/pypy/bin/checkmodule.py b/pypy/bin/checkmodule.py --- a/pypy/bin/checkmodule.py +++ b/pypy/bin/checkmodule.py @@ -8,6 +8,8 @@ """ import sys, os +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..')) + from pypy.objspace.fake.checkmodule import checkmodule def main(argv): _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
