diff options
author | Daniel Brendle <brendle@demos-deutschland.de> | 2018-05-14 12:09:41 +0200 |
---|---|---|
committer | Tollef Fog Heen <tfheen@err.no> | 2018-05-14 12:20:28 +0200 |
commit | f1d6fc7e5bd64e48ddd9a9aca1cdc985dfc2265c (patch) | |
tree | b8d054d511fdd63d518addebf4842b26cedf748a | |
parent | cb5bfaf3610d865b5df603901bceae4d9223fa8e (diff) | |
download | wee-slack-f1d6fc7e5bd64e48ddd9a9aca1cdc985dfc2265c.tar.gz |
fix: corrected registration instructions
in the registration dialog, wee_slack asks the user to reload the
slack script via /script. in my weechat 2.1 on debian sid, this is
not the proper way to reload scripts anymore. instead one has to
use the /python command to achieve the same effect. this commit
corrects the misleading instruction message.
-rw-r--r-- | wee_slack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index 51e16f1..820f99f 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -3142,7 +3142,7 @@ def command_register(data, current_buffer, args): ','.join([tok, d['access_token']])) w.prnt("", "Success! Added team \"%s\"" % (d['team_name'],)) - w.prnt("", "Please reload wee-slack with: /script reload slack") + w.prnt("", "Please reload wee-slack with: /python reload slack") @slack_buffer_or_ignore |