Browse Source
Update deluge.py
these checks dont play nice with docker
pull/7292/head
swordfish6975
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
6 additions and
6 deletions
-
couchpotato/core/downloaders/deluge.py
|
|
@ -80,17 +80,17 @@ class Deluge(DownloaderBase): |
|
|
|
} |
|
|
|
|
|
|
|
if self.conf('directory'): |
|
|
|
if os.path.isdir(self.conf('directory')): |
|
|
|
#if os.path.isdir(self.conf('directory')): |
|
|
|
options['download_location'] = self.conf('directory') |
|
|
|
else: |
|
|
|
log.error('Download directory from Deluge settings: %s doesn\'t exist', self.conf('directory')) |
|
|
|
#else: |
|
|
|
# log.error('Download directory from Deluge settings: %s doesn\'t exist', self.conf('directory')) |
|
|
|
|
|
|
|
if self.conf('completed_directory'): |
|
|
|
if os.path.isdir(self.conf('completed_directory')): |
|
|
|
#if os.path.isdir(self.conf('completed_directory')): |
|
|
|
options['move_completed'] = 1 |
|
|
|
options['move_completed_path'] = self.conf('completed_directory') |
|
|
|
else: |
|
|
|
log.error('Download directory from Deluge settings: %s doesn\'t exist', self.conf('directory')) |
|
|
|
#else: |
|
|
|
# log.error('Download directory from Deluge settings: %s doesn\'t exist', self.conf('directory')) |
|
|
|
|
|
|
|
if data.get('seed_ratio'): |
|
|
|
options['stop_at_ratio'] = 1 |
|
|
|