summaryrefslogtreecommitdiff
path: root/pylint/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/config.py')
-rw-r--r--pylint/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pylint/config.py b/pylint/config.py
index fb5c2da..490f932 100644
--- a/pylint/config.py
+++ b/pylint/config.py
@@ -554,7 +554,8 @@ class OptionsManagerMixIn(object):
if section in skipsections:
continue
options = [(n, d, v) for (n, d, v) in options
- if d.get('type') is not None]
+ if d.get('type') is not None
+ and not d.get('deprecated')]
if not options:
continue
if section not in sections: