summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvain Thénault <sylvain.thenault@logilab.fr>2013-12-20 17:32:30 +0100
committerSylvain Thénault <sylvain.thenault@logilab.fr>2013-12-20 17:32:30 +0100
commitc0b4d64b5cfea5b69c6f000ae07f42a5a943d32d (patch)
treed65eee5c84815b83c190c415cddfd7bf08b0aaed
parent6eae182ae69c45213065a89b657ea7b6f1ace658 (diff)
downloadpylint-git-c0b4d64b5cfea5b69c6f000ae07f42a5a943d32d.tar.gz
split lines
-rw-r--r--reporters/text.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/reporters/text.py b/reporters/text.py
index 555efc805..614fcdbe4 100644
--- a/reporters/text.py
+++ b/reporters/text.py
@@ -75,8 +75,8 @@ class ParseableTextReporter(TextReporter):
line_format = '{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}'
def __init__(self, output=None):
- warnings.warn('%s output format is deprecated. This is equivalent to --msg-template=%s'
- % (self.name, self.line_format))
+ warnings.warn('%s output format is deprecated. This is equivalent '
+ 'to --msg-template=%s' % (self.name, self.line_format))
TextReporter.__init__(self, output)