diff options
Diffstat (limited to 'lib/thandy/download.py')
-rw-r--r-- | lib/thandy/download.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/thandy/download.py b/lib/thandy/download.py index f715a23..d5f1629 100644 --- a/lib/thandy/download.py +++ b/lib/thandy/download.py @@ -542,9 +542,11 @@ class SimpleDownloadJob(DownloadJob): """Testing subtype of DownloadJob: just downloads a URL and writes it to disk.""" def __init__(self, targetPath, url, - wantHash=None, supportedURLTypes=None, useTor=False): + wantHash=None, supportedURLTypes=None, useTor=False, + wantLength=None): DownloadJob.__init__(self, targetPath, targetPath+".tmp", wantHash=wantHash, + wantLength=length, useTor=useTor) self._url = url @@ -579,9 +581,10 @@ class ThandyDownloadJob(DownloadJob): and Thandy's directory structure.""" def __init__(self, relPath, destPath, mirrorList, wantHash=None, supportedURLTypes=None, useTor=None, repoFile=None, - downloadStatusLog=None): + downloadStatusLog=None, wantLength=None): DownloadJob.__init__(self, destPath, None, wantHash=wantHash, + wantLength=wantLength, useTor=useTor, repoFile=repoFile) self._mirrorList = mirrorList self._relPath = relPath |