diff options
| author | Claudiu Popa <pcmanticore@gmail.com> | 2016-03-06 18:49:26 +0000 |
|---|---|---|
| committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-03-06 18:50:04 +0000 |
| commit | 9bad5de216d909500343ddcd4a39866ba4f7495a (patch) | |
| tree | 5badd33a98e4ed191ae7ecc50e9ceb99224794cd | |
| parent | ea650a56a0919df5d563e4b9c0deabef18ca066c (diff) | |
| download | pylint-git-9bad5de216d909500343ddcd4a39866ba4f7495a.tar.gz | |
Document that enable can appear only once in the configuration file
Close #486
| -rw-r--r-- | pylint/lint.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pylint/lint.py b/pylint/lint.py index b51fe38d6..c5f9328f8 100644 --- a/pylint/lint.py +++ b/pylint/lint.py @@ -341,7 +341,9 @@ class PyLinter(config.OptionsManagerMixIn, 'group': 'Messages control', 'help' : 'Enable the message, report, category or checker with the ' 'given id(s). You can either give multiple identifier ' - 'separated by comma (,) or put this option multiple time. ' + 'separated by comma (,) or put this option multiple time ' + '(only on the command line, not in the configuration file ' + 'where it should appear only once). ' 'See also the "--disable" option for examples. '}), ('disable', |
