aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bug.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2009-12-05 18:25:03 -0500
committerW. Trevor King <wking@drexel.edu>2009-12-05 18:25:03 -0500
commit01db171aafdd01f184f707ba23c1484692a4a45b (patch)
tree79211bd11b748f1435fd340bd86e103a6a66e641 /libbe/bug.py
parentf8e29454d91e1ec818fb14fad3d77a159ebbe22a (diff)
downloadbugseverywhere-01db171aafdd01f184f707ba23c1484692a4a45b.tar.gz
This addresses the following portion of 22b:7:
* Targeting normal bugs With "be depend". I think we should remove the "target" field from bugs, and move target dependencies over into the "be depend" framework. * be target list Would become "be list --severity target". A target "severity" would keep target bugs distinct from other bug/issue types.
Diffstat (limited to 'libbe/bug.py')
-rw-r--r--libbe/bug.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/libbe/bug.py b/libbe/bug.py
index 1a190c3..ed1bbd2 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -56,6 +56,7 @@ class DiskAccessRequired (Exception):
# in order of increasing severity. (name, description) pairs
severity_def = (
+ ("target", "The issue is a target or milestone, not a bug."),
("wishlist","A feature that could improve usefulness, but not a bug."),
("minor","The standard bug level."),
("serious","A bug that requires workarounds."),
@@ -173,10 +174,6 @@ class Bug(settings_object.SavedSettingsObject):
def active(self):
return self.status in active_status_values
- @_versioned_property(name="target",
- doc="The deadline for fixing this bug")
- def target(): return {}
-
@_versioned_property(name="creator",
doc="The user who entered the bug into the system")
def creator(): return {}