From: Ian Jackson Date: Wed, 13 Jan 2010 20:35:46 +0000 (+0000) Subject: Reduce wait times to something more resembling a real pirate X-Git-Tag: 6.5.0~7 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.main.git;a=commitdiff_plain;h=01da2955ba362f5c50f5e7c8bfbc0e97b732b272 Reduce wait times to something more resembling a real pirate --- diff --git a/yoweb-scrape b/yoweb-scrape index 31c75ae..3d9e857 100755 --- a/yoweb-scrape +++ b/yoweb-scrape @@ -43,6 +43,7 @@ import re as regexp import random import curses import termios +import random from optparse import OptionParser from StringIO import StringIO @@ -142,7 +143,7 @@ class Fetcher: min_age = 1 need_wait = 0 for age in ages: - if age < min_age and age < 300: + if age < min_age and age <= 5: debug('Fetcher morewait min=%d age=%d' % (min_age, age)) need_wait = max(need_wait, min_age - age) @@ -476,7 +477,7 @@ class PirateAboard: return pa.pi debug('PirateAboard refresh %d > %d %s' % ( age, guide, pa.name)) - imaginary = [2,6] + imaginary = [2,4] else: imaginary = [1] wait = fetcher.need_wait(now, imaginary)