tags 667065 + confirmed fixed-upstream
forwarded 667065 http://www.logilab.org/ticket/92584
severity 667065 important # gui is unusable
thanks
Sandro Tosi a écrit :
On Tue, Apr 3, 2012 at 22:00, Picca Frédéric-Emmanuel<pi...@debian.org> wrote:
I tryed to used pylint-gui and got this error message while clicking on run
picca@xxxxxx:~/Projets/pymca/PyMca$ pylint-gui
...
File "/usr/lib/pymodules/python2.7/pylint/reporters/guireporter.py", line 24,
in add_message
module, obj, line = location[1:]
ValueError: too many values to unpack
I confirm this failure, it makes pylint-gui unusable. It is fixed
upstream in 0.25.2. Patch attached.
--
Denis Laxalde
--- a/reporters/guireporter.py
+++ b/reporters/guireporter.py
@@ -21,7 +21,7 @@
def add_message(self, msg_id, location, msg):
"""manage message of different type and in the context of path"""
- module, obj, line = location[1:]
+ module, obj, line, col_offset = location[1:]
if self.include_ids:
sigle = msg_id
else: