From 7faa7c3dba1adb3bf4a312130e8c8142dc699328 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sat, 5 Apr 2014 12:48:10 +0200 Subject: [PATCH] Use correct super class --- couchpotato/core/_base/downloader/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/_base/downloader/main.py b/couchpotato/core/_base/downloader/main.py index 7db788a2..80890e4a 100644 --- a/couchpotato/core/_base/downloader/main.py +++ b/couchpotato/core/_base/downloader/main.py @@ -168,7 +168,7 @@ class DownloaderBase(Provider): if not data: data = {} d_manual = self.conf('manual', default = False) - return super(Downloader, self).isEnabled() and \ + return super(DownloaderBase, self).isEnabled() and \ (d_manual and manual or d_manual is False) and \ (not data or self.isCorrectProtocol(data.get('protocol')))