From: Amaury Forgeot d'Arc Date: Tue, 17 Jun 2008 23:14:19 +0000 (+0000) Subject: Fix the previous fix X-Git-Tag: v2.6b1~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=09fc075c1cf74a9c968f7cf453facdc120be2f41;p=thirdparty%2FPython%2Fcpython.git Fix the previous fix --- diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py index 97c9e122bd60..da762ccd50a4 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