aboutsummaryrefslogtreecommitdiffstats
path: root/becommands
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-08-07 13:53:26 -0400
committerW. Trevor King <wking@drexel.edu>2009-08-07 13:53:26 -0400
commitebe24ed296dd5b905e08ceecfbba62dd0f83b77a (patch)
tree141ca13af880721fd827add6b6f0036a4f07d3e4 /becommands
parent1aa5df91caaea3c40de334da159ec9982419c39c (diff)
downloadbugseverywhere-ebe24ed296dd5b905e08ceecfbba62dd0f83b77a.tar.gz
Sort bugs in HTML output.
Diffstat (limited to 'becommands')
-rw-r--r--becommands/html.py2
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)