summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2014-04-18 15:01:32 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2014-04-18 15:01:32 +0200
commit063eb592dbfa9361f636dc8cb8b54ec6e4360788 (patch)
treeaf09fa85b3f364bc78ab0493472e0387972b9943
parent393973024fa7984cc7efdcb96197c76f32a5e82b (diff)
downloadpylint-063eb592dbfa9361f636dc8cb8b54ec6e4360788.tar.gz
[variable checker] fix dummy-variable-rgx help. Closes #75
-rw-r--r--checkers/variables.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/variables.py b/checkers/variables.py
index d74cb56..4bc0162 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -170,8 +170,8 @@ __init__ files.'}),
("dummy-variables-rgx",
{'default': ('_$|dummy'),
'type' :'regexp', 'metavar' : '<regexp>',
- 'help' : 'A regular expression matching the beginning of \
- the name of dummy variables (i.e. not used).'}),
+ 'help' : 'A regular expression matching the name of dummy \
+variables (i.e. expectedly not used).'}),
("additional-builtins",
{'default': (), 'type' : 'csv',
'metavar' : '<comma separated list>',