[Python-checkins] r64361 - python/trunk/Lib/lib2to3/refactor.py

amaury.forgeotdarc python-checkins at python.org
Wed Jun 18 01:14:19 CEST 2008


Author: amaury.forgeotdarc
Date: Wed Jun 18 01:14:19 2008
New Revision: 64361

Log:
Fix the previous fix


Modified:
   python/trunk/Lib/lib2to3/refactor.py

Modified: python/trunk/Lib/lib2to3/refactor.py
==============================================================================
--- python/trunk/Lib/lib2to3/refactor.py	(original)
+++ python/trunk/Lib/lib2to3/refactor.py	Wed Jun 18 01:14:19 2008
@@ -174,7 +174,7 @@
         """
         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


More information about the Python-checkins mailing list