diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2013-07-30 18:05:31 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2013-07-30 18:05:31 +0200 |
commit | f5fb829be4799fedd0baae5714c52c1a233805e9 (patch) | |
tree | 3cb160f8115e94519ffffa88db60c739d684918e /utils.py | |
parent | 49e9ff17c27b36ed722c95c7d911fc5424d31e9c (diff) | |
download | pylint-f5fb829be4799fedd0baae5714c52c1a233805e9.tar.gz |
get_msg_display_string always return symbolic name
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -319,11 +319,7 @@ class MessagesHandlerMixIn(object): Can be just the message ID or the ID and the symbol. """ - if self.config.symbols: - symbol = self.check_message_id(msgid).symbol - if symbol: - msgid += '(%s)' % symbol - return msgid + return repr(self.check_message_id(msgid).symbol) def get_message_state_scope(self, msgid, line=None): """Returns the scope at which a message was enabled/disabled.""" |