diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-04-22 08:16:45 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-04-26 12:43:49 +0200 |
commit | dd5a842cb15f4d10401ffec42ab6a8b98212c1b5 (patch) | |
tree | b52c267af9cc1ec2783aa70f87fa7b9f32ca999e | |
parent | 0ccf1bca9fcd889e7f5ac85cc06098614d9e8ca3 (diff) | |
download | pylint-git-dd5a842cb15f4d10401ffec42ab6a8b98212c1b5.tar.gz |
Fix a typo in TextReporter
-rw-r--r-- | pylint/reporters/text.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/reporters/text.py b/pylint/reporters/text.py index ce741740b..c419f4ef9 100644 --- a/pylint/reporters/text.py +++ b/pylint/reporters/text.py @@ -119,7 +119,7 @@ def colorize_ansi(msg, color=None, style=None): class TextReporter(BaseReporter): - """reports messages and layouts in plain text""" + """Reports messages and layouts in plain text""" __implements__ = IReporter name = "text" @@ -135,7 +135,7 @@ class TextReporter(BaseReporter): self._template = str(self.linter.config.msg_template or self.line_format) def write_message(self, msg): - """Convenience method to write a formated message with class default template""" + """Convenience method to write a formatted message with class default template""" self.writeln(msg.format(self._template)) def handle_message(self, msg): |