diff options
| author | Claudiu Popa <pcmanticore@gmail.com> | 2013-12-26 10:38:39 +0200 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2013-12-26 10:38:39 +0200 |
| commit | 1c0da072956891302ce1cca51fb43bbc1486b55c (patch) | |
| tree | f28d8da350639f5320dc075bbbf4506feeb84730 /checkers/strings.py | |
| parent | 341cd1bb7b3405efa19596fb3f946abe8fe7ed1a (diff) | |
| download | pylint-git-1c0da072956891302ce1cca51fb43bbc1486b55c.tar.gz | |
Fix typos in description messages
Diffstat (limited to 'checkers/strings.py')
| -rw-r--r-- | checkers/strings.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/strings.py b/checkers/strings.py index b2dd1672c..c6bf960a1 100644 --- a/checkers/strings.py +++ b/checkers/strings.py @@ -66,11 +66,11 @@ MSGS = { 'E1305': ("Too many arguments for format string", "too-many-format-args", "Used when a format string that uses unnamed conversion \ - specifiers is given too few arguments."), + specifiers is given too many arguments."), 'E1306': ("Not enough arguments for format string", "too-few-format-args", "Used when a format string that uses unnamed conversion \ - specifiers is given too many arguments"), + specifiers is given too few arguments"), } OTHER_NODES = (astroid.Const, astroid.List, astroid.Backquote, |
