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 5a4bf66 commit d6e08c5
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):
self._dbg("Parse error on im.open call results!")
channel = self.slack_client.server.channels.find(result.get(u'channel', {}).get(u'id', None))
elif destination.startswith('G'):
result = self.slack_client.api_call('groups.open'), channel=destination)
result = self.slack_client.api_call('groups.open', channel=destination)
channel = self.slack_client.server.channels.find(destination)
else:
channel = self.slack_client.server.channels.find(destination)
Expand Down

0 comments on commit d6e08c5

Please sign in to comment.