diff options
-rw-r--r-- | docs/Commands.md | 4 | ||||
-rw-r--r-- | wee_slack.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/Commands.md b/docs/Commands.md index a972d19..ca687e4 100644 --- a/docs/Commands.md +++ b/docs/Commands.md @@ -167,7 +167,7 @@ Prints current status if no arguments are given, unsets the status if -delete is 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 ### talk @@ -204,7 +204,7 @@ Unsubscribe from a thread that has been previously subscribed to, so that 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 ### upload 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") |