Browse Source

Corrected name of the required config parameter

pull/5095/head
Krzysztof Jagiello 10 years ago
parent
commit
6cf3b5b6c8
  1. 2
      couchpotato/core/notifications/slack.py

2
couchpotato/core/notifications/slack.py

@ -8,7 +8,7 @@ autoload = 'Slack'
class Slack(Notification):
url = 'https://slack.com/api/chat.postMessage'
required_confs = ('token', 'channel',)
required_confs = ('token', 'channels',)
def notify(self, message='', data=None, listener=None):
for key in self.required_confs:

Loading…
Cancel
Save