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
commit433ae0e6052fb34c66f6b157de01342a7429d1fb (patch)
tree69ee61c94eca5862cf60b43c9a18450d4cdbf7c4
parentd9d1e91c507762d19d4c284e4bad5efabecad37a (diff)
downloadpylint-git-433ae0e6052fb34c66f6b157de01342a7429d1fb.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 d74cb564c..4bc0162db 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>',