summaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/utils.py b/utils.py
index 3c7f4fc..65f9669 100644
--- a/utils.py
+++ b/utils.py
@@ -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."""