summaryrefslogtreecommitdiff
path: root/gui.py
diff options
context:
space:
mode:
authorOmega Weapon <OmegaPhil+hg@gmail.com>2012-11-12 13:49:31 +0100
committerOmega Weapon <OmegaPhil+hg@gmail.com>2012-11-12 13:49:31 +0100
commit72110cf2990d3a91f1ee3aafc90578f35f829f85 (patch)
tree63ba523566a4a2da42627e638f59c0296ad8c1f9 /gui.py
parenta03eb51ff9b17dbe59f84a03b37e4434a6ae4c77 (diff)
downloadpylint-72110cf2990d3a91f1ee3aafc90578f35f829f85.tar.gz
Make pylint-gui cope with '--include-ids'. Closes #110838
When pylint's '--include-ids' option is used, the message type is not a single character string but includes the ID as well - change to deal with this when processing messages. Originally reported at http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=689172
Diffstat (limited to 'gui.py')
-rw-r--r--gui.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/gui.py b/gui.py
index 9023fae..2c9c1bc 100644
--- a/gui.py
+++ b/gui.py
@@ -318,7 +318,12 @@ class LintGui:
#clear the window
self.lbMessages.delete(0, END)
for msg in self.msgs:
- if (self.msg_type_dict.get(msg[0])()):
+
+ # Obtaining message type (pylint's '--include-ids' appends the
+ # ID to this letter, so 1 character long is not guaranteed)
+ msg_type = msg[0][0]
+
+ if (self.msg_type_dict.get(msg_type)()):
msg_str = convert_to_string(msg)
self.lbMessages.insert(END, msg_str)
fg_color = COLORS.get(msg_str[:3], 'black')
@@ -346,8 +351,12 @@ class LintGui:
#adding message to list of msgs
self.msgs.append(msg)
+ # Obtaining message type (pylint's '--include-ids' appends the
+ # ID to this letter, so 1 character long is not guaranteed)
+ msg_type = msg[0][0]
+
#displaying msg if message type is selected in check box
- if (self.msg_type_dict.get(msg[0])()):
+ if (self.msg_type_dict.get(msg_type)()):
msg_str = convert_to_string(msg)
self.lbMessages.insert(END, msg_str)
fg_color = COLORS.get(msg_str[:3], 'black')