aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/bug.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-12-04 09:14:01 -0500
committerW. Trevor King <wking@drexel.edu>2008-12-04 09:14:01 -0500
commit83e320a61eb74dab6eddfdda010f34fa42eedc0c (patch)
tree7bdeb30f918344ab41b87c3e66b3193360335ebc /libbe/bug.py
parentf6c5402f58b8450ee4e1a78da87b560491abbd45 (diff)
downloadbugseverywhere-83e320a61eb74dab6eddfdda010f34fa42eedc0c.tar.gz
Added per-tree configurable severities.
They currently have no effect, but you can see them with $ be set There's a lot of information in this one 'settings' variable. I think set will have to be specialized to handle arrays smoothly...
Diffstat (limited to 'libbe/bug.py')
-rw-r--r--libbe/bug.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/bug.py b/libbe/bug.py
index 14f3db0..b98067f 100644
--- a/libbe/bug.py
+++ b/libbe/bug.py
@@ -36,7 +36,7 @@ import utility
# in order of increasing severity
severity_level_def = (
- ("wishlist","A feature that could improve usefullness, but 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."),
("critical","A bug that prevents some features from working at all."),