Poor attempt to fix the 33 years bug.

This commit is contained in:
Jeremy Fincher 2003-11-23 13:01:19 +00:00
parent f7d5be5ee8
commit d1bbb015a8
1 changed files with 3 additions and 2 deletions

View File

@ -76,7 +76,8 @@ class UptimeDB(object):
fd.close()
def add(self):
if not any(lambda t: t[0] == world.startedAt, self.uptimes):
if world.startedAt != 0 and \
not any(lambda t: t[0] == world.startedAt, self.uptimes):
self.uptimes.append((world.startedAt, None))
def top(self, n=3):
@ -92,7 +93,7 @@ class UptimeDB(object):
def notNone(t):
return t[1] is not None
utils.sortBy(decorator, self.uptimes, cmp=invertCmp(cmp))
return list(islice(ifilter(notNone, self.uptimes), 3))
return list(islice(ifilter(notNone, self.uptimes), n))
def update(self):
for (i, t) in enumerate(self.uptimes):