aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/severity.py
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2008-12-04 11:32:57 -0500
committerW. Trevor King <wking@drexel.edu>2008-12-04 11:32:57 -0500
commitb5b8d7214b24338ba5c97287810a4a67e61c3c06 (patch)
tree132ba457d113eaaf03111523429dda82aabd863c /becommands/severity.py
parent1449bf7d1a42d187c30ed72074b2c45b5131d6bc (diff)
downloadbugseverywhere-b5b8d7214b24338ba5c97287810a4a67e61c3c06.tar.gz
Per-tree status levels working.
Diffstat (limited to 'becommands/severity.py')
-rw-r--r--becommands/severity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/becommands/severity.py b/becommands/severity.py
index 92f31e8..c44d8ed 100644
--- a/becommands/severity.py
+++ b/becommands/severity.py
@@ -64,10 +64,10 @@ is specified, it will be assigned to the bug.
Severity levels are:
"""]
- try:
+ try: # See if there are any per-tree severity configurations
bd = bugdir.BugDir(from_disk=True, manipulate_encodings=False)
except bugdir.NoBugDir, e:
- pass
+ pass # No tree, just show the defaults
longest_severity_len = max([len(s) for s in bug.severity_values])
for severity in bug.severity_values :
description = bug.severity_description[severity]