summaryrefslogtreecommitdiff
path: root/pylint/lint.py
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2018-11-08 23:47:28 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2018-12-18 07:49:48 +0100
commitbce332ab43b6d7cce30bc833d2d3d1e1cd6f1054 (patch)
tree5442a2272feba53fb3234c2b41d48c24787dc4e0 /pylint/lint.py
parentda67a9da682e51844fbc674229ff6619eb9c816a (diff)
downloadpylint-git-bce332ab43b6d7cce30bc833d2d3d1e1cd6f1054.tar.gz
Refactor - get_messages -> get_messages_from_checker
Diffstat (limited to 'pylint/lint.py')
-rw-r--r--pylint/lint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/lint.py b/pylint/lint.py
index 6c11dfc2a..3d868aef3 100644
--- a/pylint/lint.py
+++ b/pylint/lint.py
@@ -736,7 +736,7 @@ class PyLinter(
self.register_report(r_id, r_title, r_cb, checker)
self.register_options_provider(checker)
if hasattr(checker, "msgs"):
- self.msgs_store.register_messages(checker)
+ self.msgs_store.register_messages_from_checker(checker)
checker.load_defaults()
# Register the checker, but disable all of its messages.