commit | e457f0d220a711c396d22fe7912d7bd620fedbc3 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Wed Feb 23 18:48:52 2011 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Wed Feb 23 18:48:52 2011 +0000 |
tree | 4214f1f2eab16feea2d1cd80ba607c4c6419bb00 | |
parent | e1ea8298c6a13b640f3bf7ae5d6ce05e696adf0e [diff] [blame] |
Revert r88503 as Benjamin's request.
diff --git a/Tools/scripts/2to3 b/Tools/scripts/2to3 index 2eb5dad..fbd4aa6 100755 --- a/Tools/scripts/2to3 +++ b/Tools/scripts/2to3
@@ -1,4 +1,5 @@ #!/usr/bin/env python -import runpy +import sys +from lib2to3.main import main -runpy.run_module('lib2to3', run_name='__main__', alter_sys=True) +sys.exit(main("lib2to3.fixes"))