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
commitd3f5227f8903cf72d7de78d0c2a9fc2948b19ca9 (patch)
treeb1bf832a6fb8244f844536cb45a8a298d95b9c22
parentc15537108d3cda1267829ea0918c64549d1500e0 (diff)
downloadpylint-d3f5227f8903cf72d7de78d0c2a9fc2948b19ca9.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 555efc8..614fcdb 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)