From a28ee58a1f793d6b463ef029901c8819b62ac712 Mon Sep 17 00:00:00 2001 From: Ruud Date: Sun, 1 Jun 2014 00:26:37 +0200 Subject: [PATCH] Remove digestauth header --- couchpotato/core/downloaders/utorrent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/couchpotato/core/downloaders/utorrent.py b/couchpotato/core/downloaders/utorrent.py index 08b8d5a5..7ff5930d 100644 --- a/couchpotato/core/downloaders/utorrent.py +++ b/couchpotato/core/downloaders/utorrent.py @@ -229,7 +229,6 @@ class uTorrentAPI(object): password_manager = urllib2.HTTPPasswordMgrWithDefaultRealm() password_manager.add_password(realm = None, uri = self.url, user = username, passwd = password) self.opener.add_handler(urllib2.HTTPBasicAuthHandler(password_manager)) - self.opener.add_handler(urllib2.HTTPDigestAuthHandler(password_manager)) elif username or password: log.debug('User or password missing, not using authentication.') self.token = self.get_token()