summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Murray <chris@chrismurray.scot>2016-10-18 11:15:19 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2016-10-18 09:17:46 -0500
commit9e9f89ae56452f4f18d39b0a6e06541d8f68dafb (patch)
tree19b80ec6b38db49b709b402caa53efb06e6cf6b8
parentad717acd4fb594b57aa893ecb30304604f650955 (diff)
downloadpylint-git-9e9f89ae56452f4f18d39b0a6e06541d8f68dafb.tar.gz
Fix description of E1205 & E1206
These two checks had their descriptions reversed.
-rw-r--r--pylint/checkers/logging.py4
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.'),
}