Kaydet (Commit) 6eb9d32c authored tarafından Guido van Rossum's avatar Guido van Rossum

sort the urls in the todo list

üst 62320c9b
......@@ -297,7 +297,9 @@ class Checker:
print
print "Round %d (%s)" % (self.round, self.status())
print
urls = self.todo.keys()[:self.roundsize]
urls = self.todo.keys()
urls.sort()
del urls[self.roundsize:]
for url in urls:
self.dopage(url)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment