diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-14 20:21:29 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-14 20:21:29 -0500 |
commit | 9e6f068085042de9f1beb44b560986f767934795 (patch) | |
tree | f363f329fabe01eb15b414d0fc509971dcaff040 /libbe/bug.py | |
parent | 87e356c9208e955fcf6c20c0b271db87bdd48014 (diff) | |
download | bugseverywhere-9e6f068085042de9f1beb44b560986f767934795.tar.gz |
Fixed some bug.py split effects in diff.py
Also added 'disabled' status back in so diff doesn't choke trying to
load the older versions... Ugly hack, but I don't want to change the
past ;).
Diffstat (limited to 'libbe/bug.py')
-rw-r--r-- | libbe/bug.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py index 46dd521..19297bb 100644 --- a/libbe/bug.py +++ b/libbe/bug.py @@ -46,7 +46,8 @@ active_status_def = ( inactive_status_def = ( ("closed", "The bug is no longer relevant."), ("fixed", "The bug should no longer occur."), - ("wontfix","It's not a bug, it's a feature.")) + ("wontfix","It's not a bug, it's a feature."), + ("disabled", "?")) ### Convert the description tuples to more useful formats |