diff options
author | David Vo <auscompgeek@users.noreply.github.com> | 2017-07-27 00:27:16 +1000 |
---|---|---|
committer | David Vo <auscompgeek@users.noreply.github.com> | 2017-07-27 00:33:10 +1000 |
commit | 5181cd801a42d3db7f424b26b43c726e4001ef74 (patch) | |
tree | 6b025ade571a42915a9306eb16fb968eca0a6b7f /wee_slack.py | |
parent | 0523eb9ca47b0d472f2981c700461ed78c576bff (diff) | |
download | wee-slack-5181cd801a42d3db7f424b26b43c726e4001ef74.tar.gz |
Fix AttributeError on /slack status in team buffer
Diffstat (limited to 'wee_slack.py')
-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 0da53f0..bbfe9c8 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -3097,7 +3097,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) |