diff options
author | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-25 14:46:05 +0200 |
---|---|---|
committer | Emile Anclin <emile.anclin@logilab.fr> | 2010-10-25 14:46:05 +0200 |
commit | 173e3131986877a404522291c0bd14c8344c51a5 (patch) | |
tree | 809f646c601a6170c9876a40667a2ae66ae40980 /checkers/variables.py | |
parent | ebd179ecf035d8c4b00ac6bae896c22eedf03fbd (diff) | |
download | pylint-173e3131986877a404522291c0bd14c8344c51a5.tar.gz |
help / man: more explicit on dummy variable regex
Diffstat (limited to 'checkers/variables.py')
-rw-r--r-- | checkers/variables.py | 4 |
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>', |