From 81e7026c78c0a8426a7186df292c0713e70f9539 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 23 Sep 2009 09:13:46 -0400 Subject: Use Bug.active to decide active status in becommands/html.py --- becommands/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'becommands/html.py') diff --git a/becommands/html.py b/becommands/html.py index 2f3a7ee..908c714 100644 --- a/becommands/html.py +++ b/becommands/html.py @@ -71,7 +71,7 @@ def execute(args, manipulate_encodings=True): st[s] = 0 for b in sorted(bd, reverse=True): stime[b.uuid] = b.time - if b.status in ["open", "test", "unconfirmed", "assigned"]: + if b.active == True: bugs_active.append(b) else: bugs_inactive.append(b) -- cgit