summaryrefslogtreecommitdiff
path: root/checkers/variables.py
diff options
context:
space:
mode:
authorEmile Anclin <emile.anclin@logilab.fr>2010-10-25 14:46:05 +0200
committerEmile Anclin <emile.anclin@logilab.fr>2010-10-25 14:46:05 +0200
commit173e3131986877a404522291c0bd14c8344c51a5 (patch)
tree809f646c601a6170c9876a40667a2ae66ae40980 /checkers/variables.py
parentebd179ecf035d8c4b00ac6bae896c22eedf03fbd (diff)
downloadpylint-173e3131986877a404522291c0bd14c8344c51a5.tar.gz
help / man: more explicit on dummy variable regex
Diffstat (limited to 'checkers/variables.py')
-rw-r--r--checkers/variables.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/variables.py b/checkers/variables.py
index e67ca86..1e73a60 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -110,8 +110,8 @@ __init__ files.'}),
("dummy-variables-rgx",
{'default': ('_|dummy'),
'type' :'regexp', 'metavar' : '<regexp>',
- 'help' : 'A regular expression matching names used \
- for dummy variables (i.e. not used).'}),
+ 'help' : 'A regular expression matching the beginning of \
+ the name of dummy variables (i.e. not used).'}),
("additional-builtins",
{'default': (), 'type' : 'csv',
'metavar' : '<comma separated list>',