diff --git a/headphones/config.py b/headphones/config.py index c63ae170..c776f15a 100644 --- a/headphones/config.py +++ b/headphones/config.py @@ -55,7 +55,6 @@ _CONFIG_DEFINITIONS = { 'DELETE_LOSSLESS_FILES': (int, 'General', 1), 'DELUGE_HOST': (str, 'Deluge', ''), 'DELUGE_PASSWORD': (str, 'Deluge', ''), - 'DELUGE_USERNAME': (str, 'Deluge', ''), 'DELUGE_LABEL': (str, 'Deluge', ''), 'DELUGE_DONE_DIRECTORY': (str, 'Deluge', ''), 'DELUGE_PAUSED': (int, 'Deluge', 0), diff --git a/headphones/webserve.py b/headphones/webserve.py index 1cfb929a..70c21c06 100644 --- a/headphones/webserve.py +++ b/headphones/webserve.py @@ -1157,7 +1157,6 @@ class WebInterface(object): "transmission_username": headphones.CONFIG.TRANSMISSION_USERNAME, "transmission_password": headphones.CONFIG.TRANSMISSION_PASSWORD, "deluge_host": headphones.CONFIG.DELUGE_HOST, - "deluge_username": headphones.CONFIG.DELUGE_USERNAME, "deluge_password": headphones.CONFIG.DELUGE_PASSWORD, "deluge_label": headphones.CONFIG.DELUGE_LABEL, "deluge_done_directory": headphones.CONFIG.DELUGE_DONE_DIRECTORY,