diff options
author | W. Trevor King <wking@drexel.edu> | 2009-09-23 09:13:46 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-09-23 09:13:46 -0400 |
commit | 81e7026c78c0a8426a7186df292c0713e70f9539 (patch) | |
tree | 5d9575ccc3bb10db1df56fdff83fafef8c49aeb4 /becommands | |
parent | 73bc42e2641a45147e5b4accd63079fa8eb1d09e (diff) | |
download | bugseverywhere-81e7026c78c0a8426a7186df292c0713e70f9539.tar.gz |
Use Bug.active to decide active status in becommands/html.py
Diffstat (limited to 'becommands')
-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 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) |