diff options
author | Tollef Fog Heen <tfheen@err.no> | 2017-07-28 21:49:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 21:49:18 +0200 |
commit | 83d4ea15ec5fa1b3d047c8f5bdbb773196d44a19 (patch) | |
tree | 35f3ed28ee4fc32912c6a86779ed0b5154081f91 | |
parent | 7692e8745535fcb4e02fc818266a35c42912f34c (diff) | |
parent | 5181cd801a42d3db7f424b26b43c726e4001ef74 (diff) | |
download | wee-slack-83d4ea15ec5fa1b3d047c8f5bdbb773196d44a19.tar.gz |
Merge pull request #408 from auscompgeek/fix-status-cmd
Fix AttributeError on /slack status in team buffer
-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 048cc3f..47b9ad7 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -3108,7 +3108,7 @@ def command_status(data, current_buffer, args): profile = {"status_text":text,"status_emoji":emoji} - s = SlackRequest(team.token, "users.profile.set", {"profile": profile}, team_hash=team.team_hash, channel_identifier=channel.identifier) + s = SlackRequest(team.token, "users.profile.set", {"profile": profile}, team_hash=team.team_hash) EVENTROUTER.receive(s) |