summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2014-03-22 19:29:16 +0100
committerFlorent Xicluna <florent.xicluna@gmail.com>2014-03-22 19:29:16 +0100
commit0efe5c432db1a7125b4cb540ac309def1a860853 (patch)
tree69f04c2c425048cb95b4d75ab3b03e5d520f615c
parent0dab66dc396651af87f17377383cf462d323d310 (diff)
downloadpyflakes-0efe5c432db1a7125b4cb540ac309def1a860853.tar.gz
Better indentation
-rw-r--r--pyflakes/reporter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyflakes/reporter.py b/pyflakes/reporter.py
index 4b8d31e..ae645bd 100644
--- a/pyflakes/reporter.py
+++ b/pyflakes/reporter.py
@@ -54,8 +54,8 @@ class Reporter(object):
line = text.splitlines()[-1]
if offset is not None:
offset = offset - (len(text) - len(line))
- self._stderr.write('%s:%d:%d: %s\n' % (filename, lineno, offset + 1,
- msg))
+ self._stderr.write('%s:%d:%d: %s\n' %
+ (filename, lineno, offset + 1, msg))
else:
self._stderr.write('%s:%d: %s\n' % (filename, lineno, msg))
self._stderr.write(line)