diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-16 20:18:18 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-16 20:18:18 (GMT) |
commit | b8bfdf5200361e36941eba968cf895847bd71a98 (patch) | |
tree | b836104be523915bdba4112f567a9e6486f3bfae | |
parent | a8919fe631c50a35d355e7174676283ca57e465e (diff) | |
download | cpython-b8bfdf5200361e36941eba968cf895847bd71a98.zip cpython-b8bfdf5200361e36941eba968cf895847bd71a98.tar.gz cpython-b8bfdf5200361e36941eba968cf895847bd71a98.tar.bz2 |
fix Tools/scripts/2to3 as the result of a merge error
-rwxr-xr-x | Tools/scripts/2to3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/2to3 b/Tools/scripts/2to3 index 251c291..7578d9d 100755 --- a/Tools/scripts/2to3 +++ b/Tools/scripts/2to3 @@ -2,4 +2,4 @@ from lib2to3 import refactor import sys -sys.exit(refactor.main()) +sys.exit(refactor.main("lib2to3/fixes")) |