diff options
| author | jason | 2016-08-18 13:11:45 -0600 |
|---|---|---|
| committer | jason | 2016-08-18 13:11:45 -0600 |
| commit | bf46440877e8b2cdbc5878194c79e456dceae353 (patch) | |
| tree | 6219e1a4549be20c91b2d94ee2ee0cfddd67c438 /warmachine/connections/slack.py | |
| parent | 2aeaaaa34ac0f57cdb859714910925b0c0c29e87 (diff) | |
| download | warmachine-ng-bf46440877e8b2cdbc5878194c79e456dceae353.tar.gz warmachine-ng-bf46440877e8b2cdbc5878194c79e456dceae353.zip | |
bugfixes, docs, style and log updates
Diffstat (limited to 'warmachine/connections/slack.py')
| -rw-r--r-- | warmachine/connections/slack.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/warmachine/connections/slack.py b/warmachine/connections/slack.py index 384a1f3..2f1a249 100644 --- a/warmachine/connections/slack.py +++ b/warmachine/connections/slack.py | |||
| @@ -265,7 +265,7 @@ class SlackWS(Connection): | |||
| 265 | data = json.loads(r) | 265 | data = json.loads(r) |
| 266 | 266 | ||
| 267 | if not data['ok']: | 267 | if not data['ok']: |
| 268 | raise Exception(data) | 268 | self.log.error(data) |
| 269 | return | 269 | return |
| 270 | 270 | ||
| 271 | return data['channel']['id'] | 271 | return data['channel']['id'] |