summaryrefslogtreecommitdiff
path: root/checkers/strings.py
diff options
context:
space:
mode:
Diffstat (limited to 'checkers/strings.py')
-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 \