--- a/Utilities/py3flakes/messages.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Utilities/py3flakes/messages.py Fri Oct 18 23:00:41 2013 +0200 @@ -7,6 +7,9 @@ # This module is based on pyflakes for Python2 but was heavily hacked to # work with Python3 and Qt (translatable messages) +""" +Module implementing the messages for py3flakes. +""" def QT_TRANSLATE_NOOP(mod, txt): """ @@ -43,7 +46,8 @@ @return string representation of the object (string) """ return '{0}:{1} {2}'.format( - self.filename, self.lineno, self.message.format(*self.message_args)) + self.filename, self.lineno, + self.message.format(*self.message_args)) def getMessageData(self): """