diff --git a/couchpotato/core/downloaders/base.py b/couchpotato/core/downloaders/base.py index 55a4183..70500dc 100644 --- a/couchpotato/core/downloaders/base.py +++ b/couchpotato/core/downloaders/base.py @@ -57,6 +57,9 @@ class Downloader(Provider): return self.getAllDownloadStatus() + def getAllDownloadStatus(self): + return + def _removeFailed(self, item): if self.isDisabled(manual = True, data = {}): return diff --git a/couchpotato/core/plugins/manage/main.py b/couchpotato/core/plugins/manage/main.py index 9ef2a9c..f80b80a 100644 --- a/couchpotato/core/plugins/manage/main.py +++ b/couchpotato/core/plugins/manage/main.py @@ -198,7 +198,7 @@ class Manage(Plugin): def directories(self): try: - if self.conf('library', '').strip(): + if self.conf('library', default = '').strip(): return splitString(self.conf('library', default = ''), '::') except: pass diff --git a/couchpotato/runner.py b/couchpotato/runner.py index 97d15a5..2081d11 100644 --- a/couchpotato/runner.py +++ b/couchpotato/runner.py @@ -259,7 +259,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En while try_restart: try: - server.listen(config['port']) + server.listen(config['port'], config['host']) loop.start() except Exception, e: try: diff --git a/version.py b/version.py index 6c7094b..761ffb2 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -VERSION = '2.0.1.1' +VERSION = '2.0.6' BRANCH = 'master'