Utilities/py3flakes/messages.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2571
e6bb19eb87ea
parent 2997
7f0ef975da9e
child 3058
0a02c433f52d
diff -r 9986ec0e559a -r 10516539f238 Utilities/py3flakes/messages.py
--- 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):
         """

eric ide

mercurial