diff options
author | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2014-04-18 15:01:32 +0200 |
---|---|---|
committer | Sylvain Thénault <sylvain.thenault@logilab.fr> | 2014-04-18 15:01:32 +0200 |
commit | 433ae0e6052fb34c66f6b157de01342a7429d1fb (patch) | |
tree | 69ee61c94eca5862cf60b43c9a18450d4cdbf7c4 | |
parent | d9d1e91c507762d19d4c284e4bad5efabecad37a (diff) | |
download | pylint-git-433ae0e6052fb34c66f6b157de01342a7429d1fb.tar.gz |
[variable checker] fix dummy-variable-rgx help. Closes #75
-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 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>', |