diff options
-rw-r--r-- | slack/commands.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/slack/commands.py b/slack/commands.py index 6a3e2ac..8689157 100644 --- a/slack/commands.py +++ b/slack/commands.py @@ -150,6 +150,14 @@ def display_workspace(workspace: SlackWorkspace, detailed_list: bool): f", nick: {workspace.my_user.nick.format()}" f", {num_channels} channel(s), {num_pvs} pv", ) + elif workspace.is_connecting: + weechat.prnt( + "", + f" {with_color('chat_server', workspace.name)} " + f"{with_color('chat_delimiters', '[')}" + f"connecting" + f"{with_color('chat_delimiters', ']')}", + ) else: weechat.prnt("", f" {with_color('chat_server', workspace.name)}") |