Minor adjustment

This commit is contained in:
Bernardo Damele 2010-05-21 12:18:43 +00:00
parent a21a7fc56d
commit cda8da288c

View File

@ -63,6 +63,9 @@ class Connect:
if conf.delay is not None and isinstance(conf.delay, (int, float)) and conf.delay > 0:
time.sleep(conf.delay)
elif conf.cpuThrottle:
delay = 0.00001 * (conf.cpuThrottle ** 2)
time.sleep(delay)
url = kwargs.get('url', conf.url).replace(" ", "%20")
get = kwargs.get('get', None)
@ -260,10 +263,6 @@ class Connect:
logger.log(8, responseMsg)
if conf.cpuThrottle:
delay = 0.00001 * (conf.cpuThrottle ** 2)
time.sleep(delay)
return page, responseHeaders
@staticmethod