| Index: third_party/pylint/reporters/guireporter.py
|
| ===================================================================
|
| --- third_party/pylint/reporters/guireporter.py (revision 293207)
|
| +++ third_party/pylint/reporters/guireporter.py (working copy)
|
| @@ -3,7 +3,7 @@
|
| import sys
|
|
|
| from pylint.interfaces import IReporter
|
| -from pylint.reporters import BaseReporter, Message
|
| +from pylint.reporters import BaseReporter
|
| from logilab.common.ureports import TextWriter
|
|
|
|
|
| @@ -18,10 +18,9 @@
|
| BaseReporter.__init__(self, output)
|
| self.gui = gui
|
|
|
| - def add_message(self, msg_id, location, msg):
|
| + def handle_message(self, msg):
|
| """manage message of different type and in the context of path"""
|
| - message = Message(self, msg_id, location, msg)
|
| - self.gui.msg_queue.put(message)
|
| + self.gui.msg_queue.put(msg)
|
|
|
| def _display(self, layout):
|
| """launch layouts display"""
|
|
|