summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/checkers/base.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py
index c9f0b0a..d8bbdf6 100644
--- a/pylint/checkers/base.py
+++ b/pylint/checkers/base.py
@@ -1653,7 +1653,8 @@ class ElifChecker(BaseTokenChecker):
msgs = {'R0101': ('Too many nested blocks (%s/%s)',
'too-many-nested-blocks',
'Used when a function or a method has too many nested '
- 'blocks.'),
+ 'blocks. This makes the code less understandable and '
+ 'maintainable.'),
}
options = (('max-nested-blocks',
{'default' : 5, 'type' : 'int', 'metavar' : '<int>',