diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-01-09 20:37:25 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-01-09 20:55:13 +0200 |
commit | 81b66e0a695e22bb816aaff8e354ef4dc28532d4 (patch) | |
tree | dc16f781d560e08523a12c182afde820d41ef8ff /pylint/interfaces.py | |
parent | dba8e6e23ea338a8db685f33418dc80ed8aeff10 (diff) | |
download | pylint-git-81b66e0a695e22bb816aaff8e354ef4dc28532d4.tar.gz |
Rename display_results to display_reports, the old name being deprecated.
Diffstat (limited to 'pylint/interfaces.py')
-rw-r--r-- | pylint/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/interfaces.py b/pylint/interfaces.py index c7791e523..d58ff4a6b 100644 --- a/pylint/interfaces.py +++ b/pylint/interfaces.py @@ -90,7 +90,7 @@ class IReporter(Interface): def handle_message(self, msg): """Handle the given message object.""" - def display_results(self, layout): + def display_reports(self, layout): """display results encapsulated in the layout tree """ |