Kaydet (Commit) 09fc075c authored tarafından Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Fix the previous fix

üst 19fc7f66
...@@ -174,7 +174,7 @@ class RefactoringTool(object): ...@@ -174,7 +174,7 @@ class RefactoringTool(object):
""" """
fixer_pkg = self.fixer_dir.replace(os.path.sep, ".") fixer_pkg = self.fixer_dir.replace(os.path.sep, ".")
if os.path.altsep: if os.path.altsep:
fixer_pkg = self.fixer_dir.replace(os.path.altsep, ".") fixer_pkg = fixer_pkg.replace(os.path.altsep, ".")
pre_order_fixers = [] pre_order_fixers = []
post_order_fixers = [] post_order_fixers = []
fix_names = self.options.fix fix_names = self.options.fix
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment