--- a/deluge/httpdownloader.py 2013-02-25 18:01:07.000000000 +0100 +++ a/deluge/httpdownloader.py 2014-04-24 17:51:09.381087286 +0200 @@ -192,7 +192,16 @@ headers = {} headers["accept-encoding"] = "deflate, gzip, x-gzip" - scheme, host, port, path = client._parse(url) + if hasattr(client, '_parse'): + scheme, host, port, path = client._parse(url) + else: + from twisted.web.client import _URI + uri = _URI.fromBytes(url) + scheme = uri.scheme + host = uri.host + port = uri.port + path = uri.path + factory = HTTPDownloader(url, filename, callback, headers, force_filename, allow_compression) if scheme == "https": from twisted.internet import ssl