aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-09-23 09:13:46 -0400
committerW. Trevor King <wking@drexel.edu>2009-09-23 09:13:46 -0400
commit81e7026c78c0a8426a7186df292c0713e70f9539 (patch)
tree5d9575ccc3bb10db1df56fdff83fafef8c49aeb4
parent73bc42e2641a45147e5b4accd63079fa8eb1d09e (diff)
downloadbugseverywhere-81e7026c78c0a8426a7186df292c0713e70f9539.tar.gz
Use Bug.active to decide active status in becommands/html.py
-rw-r--r--becommands/html.py2
1 files changed, 1 insertions, 1 deletions
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)