From 5eb59636e9889e615225213811692ce423d79daf Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 25 Apr 2012 20:50:05 +0200 Subject: [PATCH] Downloaded isEnabled error --- couchpotato/core/downloaders/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/downloaders/base.py b/couchpotato/core/downloaders/base.py index 5c4e1020..31eecfd7 100644 --- a/couchpotato/core/downloaders/base.py +++ b/couchpotato/core/downloaders/base.py @@ -45,4 +45,4 @@ class Downloader(Plugin): return not self.isEnabled(manual) def isEnabled(self, manual): - return super(Downloader, self).isEnabled(), ((self.conf('manual', default = False) and manual) or manual is True) + return super(Downloader, self).isEnabled() and ((self.conf('manual', default = False) and manual) or manual is True)