summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcpopa <devnull@localhost>2013-09-22 23:36:27 +0300
committercpopa <devnull@localhost>2013-09-22 23:36:27 +0300
commit054f96efb204cc2ddbf287e52fd4a4bd734dc6bc (patch)
tree52c58c818cbc8a7d1a78109bb4bbe400798317da
parent550d280f18507283d90e4e50cd8d35d8a6d2deaa (diff)
downloadpylint-054f96efb204cc2ddbf287e52fd4a4bd734dc6bc.tar.gz
Bug fix.
-rw-r--r--checkers/strings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkers/strings.py b/checkers/strings.py
index c4a6a39..f98e70d 100644
--- a/checkers/strings.py
+++ b/checkers/strings.py
@@ -41,7 +41,7 @@ MSGS = {
conversion specifier."),
'E1302': ("Mixing named and unnamed conversion specifiers in format string",
"mixed-format-string",
- "Used when a format string contains both named (e.g. '%(foo)d'
+ "Used when a format string contains both named (e.g. '%(foo)d' \
or '{foo}' for Python 3 format string) \
and unnamed (e.g. '%d' or '{}' for Python 3 format string) \
conversion specifiers. This is also \