Skip to content
This repository has been archived by the owner on Aug 15, 2022. It is now read-only.

Commit

Permalink
paren fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aerickson committed May 11, 2017
1 parent 84e4a1c commit 7ec89b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtmbot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def output(self):
channel = self.slack_client.server.channels.find(result.get(u'channel', {}).get(u'id', None))
elif destination.startswith('G'):
try:
result = json.loads(self.slack_client.api_call('groups.open'), channel=destination))
result = json.loads(self.slack_client.api_call('groups.open', channel=destination))
except ValueError:
self._dbg("Parse error on groups.open call results!")
channel = self.slack_client.server.channels.find(result.get(u'channel', {}).get(u'id', None))
Expand Down

0 comments on commit 7ec89b8

Please sign in to comment.