summaryrefslogtreecommitdiff
path: root/Lib/lib2to3/refactor.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-05-13 13:39:51 +0300
committerBerker Peksag <berker.peksag@gmail.com>2015-05-13 13:39:51 +0300
commit3a81f9ba46005e6876310283a67379d50304ebca (patch)
treebe5b5b87cd595036b8f07b17706317a899108675 /Lib/lib2to3/refactor.py
parenta3780259e4ca668109a86054696002bc1b2700ce (diff)
downloadcpython-git-3a81f9ba46005e6876310283a67379d50304ebca.tar.gz
Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers.
Patch by Vinod Kurup.
Diffstat (limited to 'Lib/lib2to3/refactor.py')
-rw-r--r--Lib/lib2to3/refactor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py
index c24be14867..adf999684b 100644
--- a/Lib/lib2to3/refactor.py
+++ b/Lib/lib2to3/refactor.py
@@ -255,7 +255,7 @@ class RefactoringTool(object):
fixer = fix_class(self.options, self.fixer_log)
if fixer.explicit and self.explicit is not True and \
fix_mod_path not in self.explicit:
- self.log_message("Skipping implicit fixer: %s", fix_name)
+ self.log_message("Skipping optional fixer: %s", fix_name)
continue
self.log_debug("Adding transformation: %s", fix_name)