From fb145cf68c0178b9551eaae3213ec01be112bf76 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Mon, 24 Sep 2012 15:41:13 +0200 Subject: fixed some things, so downloads works again --- module/network/Browser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/network/Browser.py') diff --git a/module/network/Browser.py b/module/network/Browser.py index 9cf6c2f30..25cbf669b 100644 --- a/module/network/Browser.py +++ b/module/network/Browser.py @@ -87,11 +87,11 @@ class Browser(object): self.dl.abort = True def httpDownload(self, url, filename, get={}, post={}, ref=True, cookies=True, chunks=1, resume=False, - progressNotify=None, disposition=False): + disposition=False): """ this can also download ftp """ self._size = 0 self.dl = HTTPDownload(url, filename, get, post, self.lastEffectiveURL if ref else None, - self.cj if cookies else None, self.bucket, self.options, progressNotify, disposition) + self.cj if cookies else None, self.bucket, self.options, disposition) name = self.dl.download(chunks, resume) self._size = self.dl.size -- cgit v1.2.3