summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xLib/lib2to3/refactor.py2
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