diff --git a/couchpotato/core/downloaders/deluge/__init__.py b/couchpotato/core/downloaders/deluge/__init__.py index 4b122b3..c7aa26e 100644 --- a/couchpotato/core/downloaders/deluge/__init__.py +++ b/couchpotato/core/downloaders/deluge/__init__.py @@ -33,12 +33,6 @@ config = [{ 'type': 'password', }, { - 'name': 'paused', - 'type': 'bool', - 'default': False, - 'description': 'Add the torrent paused.', - }, - { 'name': 'directory', 'type': 'directory', 'description': 'Download to this directory. Keep empty for default Deluge download directory.', @@ -70,6 +64,13 @@ config = [{ 'description': 'Also remove the leftover files.', }, { + 'name': 'paused', + 'type': 'bool', + 'advanced': True, + 'default': False, + 'description': 'Add the torrent paused.', + }, + { 'name': 'manual', 'default': 0, 'type': 'bool', diff --git a/libs/synchronousdeluge/__init__.py b/libs/synchronousdeluge/__init__.py index 208e45c..bf5b20f 100644 --- a/libs/synchronousdeluge/__init__.py +++ b/libs/synchronousdeluge/__init__.py @@ -19,6 +19,6 @@ __title__ = "synchronous-deluge" __version__ = "0.1" __author__ = "Christian Dale" -from .synchronousdeluge.client import DelugeClient -from .synchronousdeluge.exceptions import DelugeRPCError +from synchronousdeluge.client import DelugeClient +from synchronousdeluge.exceptions import DelugeRPCError diff --git a/libs/synchronousdeluge/client.py b/libs/synchronousdeluge/client.py index 1b63b0b..98a8084 100644 --- a/libs/synchronousdeluge/client.py +++ b/libs/synchronousdeluge/client.py @@ -3,9 +3,9 @@ import os from collections import defaultdict from itertools import imap -from .synchronousdeluge.exceptions import DelugeRPCError -from .synchronousdeluge.protocol import DelugeRPCRequest, DelugeRPCResponse -from .synchronousdeluge.transfer import DelugeTransfer +from synchronousdeluge.exceptions import DelugeRPCError +from synchronousdeluge.protocol import DelugeRPCRequest, DelugeRPCResponse +from synchronousdeluge.transfer import DelugeTransfer __all__ = ["DelugeClient"]