From 2277322e572b95aa61557e3b10e99de97a993e4f Mon Sep 17 00:00:00 2001 From: Ruud Date: Tue, 10 Feb 2015 13:47:22 +0100 Subject: [PATCH] Traceback import missing --- couchpotato/core/notifications/webhook.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/webhook.py b/couchpotato/core/notifications/webhook.py index d970bb5..8dc6329 100644 --- a/couchpotato/core/notifications/webhook.py +++ b/couchpotato/core/notifications/webhook.py @@ -1,15 +1,17 @@ +import traceback + from couchpotato.core.helpers.encoding import toUnicode from couchpotato.core.helpers.variable import getIdentifier from couchpotato.core.logger import CPLog from couchpotato.core.notifications.base import Notification + log = CPLog(__name__) autoload = 'Webhook' class Webhook(Notification): - def notify(self, message = '', data = None, listener = None): if not data: data = {}