diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2015-05-13 10:40:12 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2015-05-13 10:40:12 (GMT) |
commit | 50c72d27787d647654cac4563d63be4cc39553a1 (patch) | |
tree | 2ba484ed03e768971ab34cf26a94a609f496514e /Lib/lib2to3 | |
parent | 46cf02d25aeab175e70c087a53d10a47dc5df203 (diff) | |
parent | 3a81f9ba46005e6876310283a67379d50304ebca (diff) | |
download | cpython-50c72d27787d647654cac4563d63be4cc39553a1.zip cpython-50c72d27787d647654cac4563d63be4cc39553a1.tar.gz cpython-50c72d27787d647654cac4563d63be4cc39553a1.tar.bz2 |
Issue #22064: Improve the misleading message from 2to3 when skipping optional fixers.
Patch by Vinod Kurup.
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r-- | Lib/lib2to3/refactor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/refactor.py b/Lib/lib2to3/refactor.py index c24be14..adf9996 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) |