From 1bb0b3c9bfba4da7128edd1bcf63ea9dda068a23 Mon Sep 17 00:00:00 2001 From: Noam Date: Wed, 24 Feb 2016 17:14:14 +0200 Subject: [PATCH] No Need For Deluge Username - Removed username configuration option, unneeded --- headphones/config.py | 1 - headphones/webserve.py | 1 - 2 files changed, 2 deletions(-) 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,