summaryrefslogtreecommitdiff
path: root/reporters
diff options
context:
space:
mode:
authorSylvain Th?nault <sylvain.thenault@logilab.fr>2012-05-15 14:57:49 +0200
committerSylvain Th?nault <sylvain.thenault@logilab.fr>2012-05-15 14:57:49 +0200
commit3a3e90a36377ff2b6e2ab3998826bfe16360337d (patch)
tree6e563a5c1929453ebef274a177c37d60e096a7cb /reporters
parentc4fc07f28999f7a5234209fdfae271f92549edf1 (diff)
downloadpylint-3a3e90a36377ff2b6e2ab3998826bfe16360337d.tar.gz
fix gui reporter broken by addition of coloffset information. Closes #92584
Diffstat (limited to 'reporters')
-rw-r--r--reporters/guireporter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/reporters/guireporter.py b/reporters/guireporter.py
index 13914ba..4e98fef 100644
--- a/reporters/guireporter.py
+++ b/reporters/guireporter.py
@@ -21,7 +21,7 @@ class GUIReporter(BaseReporter):
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: