Fixed bugz0rs in URL, added vacuum (called on stats).

This commit is contained in:
Jeremy Fincher 2004-07-30 23:41:17 +00:00
parent 893727f962
commit c83c8c3ec3
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,6 @@ class URLDB(object):
out = file(filename, 'w')
notAdded = 0
urls = self.getUrlsAndNicks(lambda *args: True)
urls.reverse()
seen = sets.Set()
for (i, (url, nick)) in enumerate(urls):
if url not in seen:
@ -161,6 +160,7 @@ class URLDB(object):
else:
urls[i] = None
notAdded += 1
urls.reverse()
for urlNick in urls:
if urlNick is not None:
out.write(self._formatRecord(*urlNick))