diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-06-17 23:14:19 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-06-17 23:14:19 (GMT) |
commit | 09fc075c1cf74a9c968f7cf453facdc120be2f41 (patch) | |
tree | 226dd9028e154ce8492c08fc044a254a9a0aa8dc /Lib/lib2to3/refactor.py | |
parent | 19fc7f6635fedea250e584fca940995d3ea969a3 (diff) | |
download | cpython-09fc075c1cf74a9c968f7cf453facdc120be2f41.zip cpython-09fc075c1cf74a9c968f7cf453facdc120be2f41.tar.gz cpython-09fc075c1cf74a9c968f7cf453facdc120be2f41.tar.bz2 |
Fix the previous fix
Diffstat (limited to 'Lib/lib2to3/refactor.py')
-rwxr-xr-x | Lib/lib2to3/refactor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py index 97c9e12..da762cc 100755 --- a/Lib/lib2to3/refactor.py +++ b/Lib/lib2to3/refactor.py @@ -174,7 +174,7 @@ class RefactoringTool(object): """ fixer_pkg = self.fixer_dir.replace(os.path.sep, ".") if os.path.altsep: - fixer_pkg = self.fixer_dir.replace(os.path.altsep, ".") + fixer_pkg = fixer_pkg.replace(os.path.altsep, ".") pre_order_fixers = [] post_order_fixers = [] fix_names = self.options.fix |