summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2017-12-12 20:07:12 +0100
committerClaudiu Popa <pcmanticore@gmail.com>2017-12-12 20:07:12 +0100
commit04928d6c2ac1b5bde30f2db7101dca67a8b2ffe9 (patch)
treebce85f42c2e4dba8e5f7b9204e93263309a6aa93
parent44a2431745e61ff7d7ded7db5145da835b5877d1 (diff)
downloadpylint-git-04928d6c2ac1b5bde30f2db7101dca67a8b2ffe9.tar.gz
Correct the name of the flag in help string
-rw-r--r--pylint/checkers/typecheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py
index 2dfdb9bce..3596ed505 100644
--- a/pylint/checkers/typecheck.py
+++ b/pylint/checkers/typecheck.py
@@ -186,7 +186,7 @@ MSGS = {
'Used when a variable is accessed for an unexistent member.',
{'old_names': [('E1103', 'maybe-no-member')]}),
'I1101': ('%s %r has not %r member%s, but source is unavailable. Consider '
- 'adding this module to extension-package-whitelist if you want '
+ 'adding this module to extension-pkg-whitelist if you want '
'to perform analysis based on run-time introspection of living objects.',
'c-extension-no-member',
'Used when a variable is accessed for non-existent member of C '