diff options
author | Trygve Aaberge <trygveaa@gmail.com> | 2020-05-06 00:15:43 +0200 |
---|---|---|
committer | Trygve Aaberge <trygveaa@gmail.com> | 2020-05-06 00:15:43 +0200 |
commit | 13cd599675e441e26a6451958cfd5aeeb0a0fde8 (patch) | |
tree | 874e0d3598dbecfd7a7ef9988a5ae6ffa34e7ac0 /wee_slack.py | |
parent | c6b4d2e1387d84545ba731201c5dcd46fa91b6ed (diff) | |
download | wee-slack-13cd599675e441e26a6451958cfd5aeeb0a0fde8.tar.gz |
Improve description for (un)subscribe commands
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wee_slack.py b/wee_slack.py index 097cf37..a8b1b30 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -4284,7 +4284,7 @@ def command_subscribe(data, current_buffer, args): Subscribe to a thread, so that you are alerted to new messages. When in a thread buffer, you can omit the thread id. - Only works when using a session token, see the readme: https://github.com/wee-slack/wee-slack#4-add-your-slack-api-tokens" + This command only works when using a session token, see the readme: https://github.com/wee-slack/wee-slack#4-add-your-slack-api-tokens """ return subscribe_helper(current_buffer, args, 'Usage: /slack subscribe <thread>', "subscriptions.thread.add") @@ -4300,7 +4300,7 @@ def command_unsubscribe(data, current_buffer, args): you are not alerted to new messages. When in a thread buffer, you can omit the thread id. - Only works when using a session token, see the readme: https://github.com/wee-slack/wee-slack#4-add-your-slack-api-tokens" + This command only works when using a session token, see the readme: https://github.com/wee-slack/wee-slack#4-add-your-slack-api-tokens """ return subscribe_helper(current_buffer, args, 'Usage: /slack unsubscribe <thread>', "subscriptions.thread.remove") |