Kaydet (Commit) bd7bda43 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

Merged revisions 65876 via svnmerge from

svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3

........
  r65876 | benjamin.peterson | 2008-08-19 15:54:52 -0500 (Tue, 19 Aug 2008) | 1 line

  apply a fix I think will help Windows
........
üst 93ebfb15
...@@ -177,6 +177,8 @@ class RefactoringTool(object): ...@@ -177,6 +177,8 @@ class RefactoringTool(object):
else: else:
fixer_pkg = self.fixer_dir fixer_pkg = self.fixer_dir
fixer_pkg = fixer_pkg.replace(os.path.sep, ".") fixer_pkg = fixer_pkg.replace(os.path.sep, ".")
if os.path.altsep:
fixer_pkg = self.fixer_dir.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