| Index: third_party/pylint/reporters/html.py
|
| ===================================================================
|
| --- third_party/pylint/reporters/html.py (revision 293207)
|
| +++ third_party/pylint/reporters/html.py (working copy)
|
| @@ -19,7 +19,7 @@
|
| from logilab.common.ureports import HTMLWriter, Section, Table
|
|
|
| from pylint.interfaces import IReporter
|
| -from pylint.reporters import BaseReporter, Message
|
| +from pylint.reporters import BaseReporter
|
|
|
|
|
| class HTMLReporter(BaseReporter):
|
| @@ -33,9 +33,8 @@
|
| BaseReporter.__init__(self, output)
|
| self.msgs = []
|
|
|
| - def add_message(self, msg_id, location, msg):
|
| + def handle_message(self, msg):
|
| """manage message of different type and in the context of path"""
|
| - msg = Message(self, msg_id, location, msg)
|
| self.msgs += (msg.category, msg.module, msg.obj,
|
| str(msg.line), str(msg.column), escape(msg.msg))
|
|
|
|
|