Fix the previous fix
This commit is contained in:
parent
19fc7f6635
commit
09fc075c1c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue