From ebe24ed296dd5b905e08ceecfbba62dd0f83b77a Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 7 Aug 2009 13:53:26 -0400 Subject: [PATCH] Sort bugs in HTML output. --- becommands/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/becommands/html.py b/becommands/html.py index 8bc570d..4bf43f4 100644 --- a/becommands/html.py +++ b/becommands/html.py @@ -62,7 +62,7 @@ def execute(args, test=False): bugs_inactive = [] for s in status_list: st[s] = 0 - for b in bd: + for b in sorted(bd, reverse=True): stime[b.uuid] = b.time if b.status in ["open", "test", "unconfirmed", "assigned"]: bugs_active.append(b) -- 2.26.2