diff -r 84b65fb9e780 -r d133c7edd88a UtilitiesPython2/py2flakes/messages.py --- a/UtilitiesPython2/py2flakes/messages.py Sun Sep 29 15:54:10 2013 +0200 +++ b/UtilitiesPython2/py2flakes/messages.py Sun Sep 29 18:22:08 2013 +0200 @@ -7,6 +7,10 @@ # This module is based on pyflakes for Python2 but was heavily hacked to # work within eric5 +""" +Module implementing the messages for pyflakes. +""" + class Message(object): """ @@ -244,7 +248,7 @@ @param filename name of the file (string) @param lineno line number (integer) - @param name name of the unused variable (string) + @param names name of the unused variable (string) """ Message.__init__(self, filename, lineno) self.message_args = (names,)