diff options
author | W. Trevor King <wking@drexel.edu> | 2009-08-07 13:53:26 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-08-07 13:53:26 -0400 |
commit | ebe24ed296dd5b905e08ceecfbba62dd0f83b77a (patch) | |
tree | 141ca13af880721fd827add6b6f0036a4f07d3e4 | |
parent | 1aa5df91caaea3c40de334da159ec9982419c39c (diff) | |
download | bugseverywhere-ebe24ed296dd5b905e08ceecfbba62dd0f83b77a.tar.gz |
Sort bugs in HTML output.
-rw-r--r-- | becommands/html.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |