From ef6fd59d1f51a77f3f20724deb2a9ae70a9e29d1 Mon Sep 17 00:00:00 2001 From: Ismaƫl Bouya Date: Mon, 13 Nov 2017 09:43:58 +0100 Subject: Hilight team identifier in slack --- wee_slack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wee_slack.py') diff --git a/wee_slack.py b/wee_slack.py index 274e05e..e8084fb 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -1268,7 +1268,7 @@ class SlackChannel(object): def set_highlights(self): # highlight my own name and any set highlights if self.channel_buffer: - highlights = self.team.highlight_words.union({'@' + self.team.nick, "!here", "!channel", "!everyone"}) + highlights = self.team.highlight_words.union({'@' + self.team.nick, self.team.myidentifier, "!here", "!channel", "!everyone"}) h_str = ",".join(highlights) w.buffer_set(self.channel_buffer, "highlight_words", h_str) -- cgit