cpython: f6e297e698ff (original) (raw)
Mercurial > cpython
changeset 96022:f6e297e698ff 2.7
Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers. Patch by Vinod Kurup. [#22064]
Berker Peksag berker.peksag@gmail.com | |
---|---|
date | Wed, 13 May 2015 13:42:26 +0300 |
parents | cd0706499812 |
children | 68d653f9a2c9 |
files | Lib/lib2to3/refactor.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Lib/lib2to3/refactor.py 2 |
line wrap: on
line diff
--- 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 [](#l1.5) fix_mod_path not in self.explicit:
self.log_message("Skipping implicit fixer: %s", fix_name)[](#l1.7)
self.log_message("Skipping optional fixer: %s", fix_name)[](#l1.8) continue[](#l1.9)