aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
authorTollef Fog Heen <tfheen@err.no>2017-07-28 21:49:18 +0200
committerGitHub <noreply@github.com>2017-07-28 21:49:18 +0200
commit83d4ea15ec5fa1b3d047c8f5bdbb773196d44a19 (patch)
tree35f3ed28ee4fc32912c6a86779ed0b5154081f91 /wee_slack.py
parent7692e8745535fcb4e02fc818266a35c42912f34c (diff)
parent5181cd801a42d3db7f424b26b43c726e4001ef74 (diff)
downloadwee-slack-83d4ea15ec5fa1b3d047c8f5bdbb773196d44a19.tar.gz
Merge pull request #408 from auscompgeek/fix-status-cmd
Fix AttributeError on /slack status in team buffer
Diffstat (limited to 'wee_slack.py')
-rw-r--r--wee_slack.py2
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)