summaryrefslogtreecommitdiff
path: root/pylint/extensions/check_docs.py
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-10 23:57:47 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-05-10 23:57:47 +0300
commitea27a8349b2882b33cda2a30e237b66483c2951d (patch)
tree9aeaf09f2e1d3a3466bf7827ed4088fc51fa9bf2 /pylint/extensions/check_docs.py
parentf407dd751d1a48f97fafc6ceb633da7acba203fa (diff)
downloadpylint-git-ea27a8349b2882b33cda2a30e237b66483c2951d.tar.gz
Change the name of the parameter checker, so that it can be chosen easily at command line.
Diffstat (limited to 'pylint/extensions/check_docs.py')
-rw-r--r--pylint/extensions/check_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/extensions/check_docs.py b/pylint/extensions/check_docs.py
index 06bb994ac..3788f8001 100644
--- a/pylint/extensions/check_docs.py
+++ b/pylint/extensions/check_docs.py
@@ -45,7 +45,7 @@ class ParamDocChecker(BaseChecker):
"""
__implements__ = IAstroidChecker
- name = 'parameter doc checks'
+ name = 'param_checks'
msgs = {
'W9003': ('"%s" missing or differing in parameter documentation',
'missing-param-doc',