From 8d48c8f201be60748b83cf62a233c46033dcba47 Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sat, 6 Apr 2013 08:54:25 -0600 Subject: 2to3: Apply `imports2` fixer. No files were changed by this fixer, so add it to the list of fixers to be skipped by 2to3. Closes #3181. --- tools/py3tool.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tools/py3tool.py') diff --git a/tools/py3tool.py b/tools/py3tool.py index d7fc94240..431ceeb61 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -78,7 +78,8 @@ FIXES_TO_SKIP = [ 'xreadlines', 'xrange', 'import', - 'imports' + 'imports', + 'imports2' ] skip_fixes= [] -- cgit v1.2.1 From 37d6468d953703f9918b7d1ff01db10ece4a545c Mon Sep 17 00:00:00 2001 From: Charles Harris Date: Sat, 6 Apr 2013 09:05:45 -0600 Subject: MAINT: Append comma to last item tools/py3tool.py skipped fixers. Makes it easier to put in the next fixer. --- tools/py3tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/py3tool.py') diff --git a/tools/py3tool.py b/tools/py3tool.py index 431ceeb61..07c01c42b 100755 --- a/tools/py3tool.py +++ b/tools/py3tool.py @@ -79,7 +79,7 @@ FIXES_TO_SKIP = [ 'xrange', 'import', 'imports', - 'imports2' + 'imports2', ] skip_fixes= [] -- cgit v1.2.1