aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/severity.py
diff options
context:
space:
mode:
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]