Index: third_party/pylint/reporters/text.py |
diff --git a/third_party/pylint/reporters/text.py b/third_party/pylint/reporters/text.py |
index bc8631326d059547653d32ea8ec25f67a473fe84..53c4a8da6a05850c0d370a0d827956b1d8151e55 100644 |
--- a/third_party/pylint/reporters/text.py |
+++ b/third_party/pylint/reporters/text.py |
@@ -77,7 +77,8 @@ class ParseableTextReporter(TextReporter): |
def __init__(self, output=None): |
warnings.warn('%s output format is deprecated. This is equivalent ' |
- 'to --msg-template=%s' % (self.name, self.line_format)) |
+ 'to --msg-template=%s' % (self.name, self.line_format), |
+ DeprecationWarning) |
TextReporter.__init__(self, output) |