diff options
-rw-r--r-- | pylint/checkers/logging.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/logging.py b/pylint/checkers/logging.py index 30ef7a21d..92e525d5d 100644 --- a/pylint/checkers/logging.py +++ b/pylint/checkers/logging.py @@ -49,10 +49,10 @@ MSGS = { the end of a conversion specifier.'), 'E1205': ('Too many arguments for logging format string', 'logging-too-many-args', - 'Used when a logging format string is given too few arguments.'), + 'Used when a logging format string is given too many arguments'), 'E1206': ('Not enough arguments for logging format string', 'logging-too-few-args', - 'Used when a logging format string is given too many arguments'), + 'Used when a logging format string is given too few arguments.'), } |