diff options
Diffstat (limited to 'warmachine/connections')
| -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'] |