# HG changeset patch # User Bjoern Ricks # Date 1280415550 0 # Node ID c6d88d70bc434b6077f798618de5ac1db3bb27db # Parent 9926ced5d477861d87f11a3f1da2707542fb4148 fixed another typo diff -r 9926ced5d477 -r c6d88d70bc43 treepkg/info/status.py --- a/treepkg/info/status.py Thu Jul 29 14:52:42 2010 +0000 +++ b/treepkg/info/status.py Thu Jul 29 14:59:10 2010 +0000 @@ -91,11 +91,11 @@ revisions = track.get_revisions() revisions = sorted(revisions, key=lambda r: r.status.start, reverse=True) - canidates = revisions + candidates = revisions if self.success: # skip not successful builds candidates = [rev for rev in revisions - if rev.status.status.finished - and not rev.status.status.error] + if rev.status.status.finished + and not rev.status.status.error] if self.numnewestrev > 0: canditates = candidates[:self.numnewestrev]