From: W. Trevor King Date: Wed, 23 Sep 2009 13:13:46 +0000 (-0400) Subject: Use Bug.active to decide active status in becommands/html.py X-Git-Tag: 1.0.0~62^2~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=81e7026c78c0a8426a7186df292c0713e70f9539;p=be.git Use Bug.active to decide active status in 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)