diff options
author | Ryan Huber <rhuber@gmail.com> | 2015-02-21 12:37:31 -0800 |
---|---|---|
committer | Ryan Huber <rhuber@gmail.com> | 2015-02-21 12:37:31 -0800 |
commit | 640bc574e175131b12aba580688929f9727b7050 (patch) | |
tree | f8f2d91e304916869347671aaa7d75b47cf8bb81 /wee_slack.py | |
parent | a334eeb22ca980af87591c50a72861f597ae57de (diff) | |
parent | 872c53c908fb843d70b5810a95f4110c95fc810f (diff) | |
download | wee-slack-640bc574e175131b12aba580688929f9727b7050.tar.gz |
Merge pull request #39 from ishigoemon/16_fix_bufferpl_colors
Fix buffers.pl hotlist colors
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wee_slack.py b/wee_slack.py index 71d3a65..9cf3e2f 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -524,10 +524,9 @@ class Channel(SlackThing): def rename(self): if current_domain_name() != self.server.domain and channels_not_on_current_server_color: - color = channels_not_on_current_server_color + color = w.color(channels_not_on_current_server_color) else: - color = "default" - color = w.color(color) + color = "" if self.is_someone_typing(): new_name = ">{}".format(self.name[1:]) else: |