Skip to content

Commit bb9aba6

Browse files
authored
Unify output : characters. Fixes #692 (#693)
1 parent 2a61f3c commit bb9aba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyflakes/messages.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ def __init__(self, filename, loc):
1313
self.col = getattr(loc, 'col_offset', 0)
1414

1515
def __str__(self):
16-
return '%s:%s:%s %s' % (self.filename, self.lineno, self.col+1,
17-
self.message % self.message_args)
16+
return '%s:%s:%s: %s' % (self.filename, self.lineno, self.col+1,
17+
self.message % self.message_args)
1818

1919

2020
class UnusedImport(Message):

0 commit comments

Comments
 (0)