summaryrefslogtreecommitdiff
path: root/pylint/checkers/base.py
diff options
context:
space:
mode:
authorDmitry Pribysh <dmand@yandex.ru>2015-10-22 15:19:04 +0300
committerDmitry Pribysh <dmand@yandex.ru>2015-10-22 15:19:04 +0300
commita4c074d5a2dbe49f52c131c33fea68f60fadef86 (patch)
treea32d0c79ce261dea528d0e32f8cc06276c4d1a2e /pylint/checkers/base.py
parent525a54d010f04157cb2d63768f9a1853783ffbf4 (diff)
downloadpylint-a4c074d5a2dbe49f52c131c33fea68f60fadef86.tar.gz
Fix documentation build warnings and errors
Errors fixed: - unqouted emphasis character usage (*) - missing list index Fixes #481.
Diffstat (limited to 'pylint/checkers/base.py')
-rw-r--r--pylint/checkers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py
index b9955e3..8c13b91 100644
--- a/pylint/checkers/base.py
+++ b/pylint/checkers/base.py
@@ -310,7 +310,7 @@ class BasicErrorChecker(_BasicChecker):
'E0112': ('More than one starred expression in assignment',
'too-many-star-expressions',
'Emitted when there are more than one starred '
- 'expressions (*x) in an assignment. This is a SyntaxError.',
+ 'expressions (`*x`) in an assignment. This is a SyntaxError.',
{'minversion': (3, 0)}),
'E0113': ('Starred assignment target must be in a list or tuple',
'invalid-star-assignment-target',