summaryrefslogtreecommitdiff
path: root/pylint/utils.py
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-20 17:17:14 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-20 17:17:14 +0300
commit69f5e6975f7978527731622785cb9a9ce739ffb3 (patch)
tree09fdc2de8ec0ca23864b72f1f8ba100feca33d74 /pylint/utils.py
parent2948d991f2d6b5e13bd2a84a0a75ec43b9f2ad28 (diff)
downloadpylint-69f5e6975f7978527731622785cb9a9ce739ffb3.tar.gz
Update the deprecation message to reflect the fact that the options are *obsoleted*.
Diffstat (limited to 'pylint/utils.py')
-rw-r--r--pylint/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/utils.py b/pylint/utils.py
index 79fb4bc..236f7c8 100644
--- a/pylint/utils.py
+++ b/pylint/utils.py
@@ -939,8 +939,8 @@ def get_global_option(checker, option, default=None):
def deprecated_option(shortname=None, opt_type=None, help_msg=None):
def _warn_deprecated(option, optname, *args): # pylint: disable=unused-argument
- msg = ("Warning: option %s is deprecated and ignored. "
- "It will be removed in Pylint 1.6.\n")
+ msg = ("Warning: option %s is obsoleted and "
+ "it is slated for removal in Pylint 1.6.\n")
sys.stderr.write(msg % (optname,))
option = {