From 0c44c486280c0024dbeeb433eb835a89ebd1d269 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 31 Mar 2013 11:12:37 +0200 Subject: [PATCH] Notification test failed. closes #1561 Thanks @FredrikWendt --- couchpotato/core/notifications/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/base.py b/couchpotato/core/notifications/base.py index dda3dade..9e80aea8 100644 --- a/couchpotato/core/notifications/base.py +++ b/couchpotato/core/notifications/base.py @@ -44,7 +44,7 @@ class Notification(Provider): def _notify(self, *args, **kwargs): if self.isEnabled(): - self.notify(*args, **kwargs) + return self.notify(*args, **kwargs) def notify(self, message = '', data = {}, listener = None): pass