From 94e33924fad7b7a38d6d1e848d01b5e830a45360 Mon Sep 17 00:00:00 2001 From: Thomas Keck Date: Sat, 13 Mar 2010 16:19:20 +0100 Subject: First setting implemented --- proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proxy.py') diff --git a/proxy.py b/proxy.py index da30636..0b63c52 100755 --- a/proxy.py +++ b/proxy.py @@ -122,7 +122,7 @@ class MultipleProxyReader(object): and self.fetch_pos + 1 < self.content_length and not self.channel.is_closed \ and len( filter( (lambda f: f.proxy == fetcher.proxy), self.fetchers) ) < 2: #Start a new fetcher on this line if this fetchers is X-Bytes before finishing his jobs - blocksize = min(TIME_SLICE * int(fetcher.speed()), MIN_BLOCKSIZE) + blocksize = min(int(TIME_SLICE * fetcher.speed()), MIN_BLOCKSIZE) fetch_range = self.next_range(blocksize) print "Start new Fetcher, bs=%s range=%s" % (blocksize,fetch_range) self.fetchers.append( Fetcher(self, fetcher.proxy, self.url, self.header, fetch_range) ) -- cgit v1.2.1