aboutsummaryrefslogtreecommitdiffstats
path: root/becommands/list.py
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2005-03-18 18:53:49 +0000
committerAaron Bentley <abentley@panoramicfeedback.com>2005-03-18 18:53:49 +0000
commit284b8f7226dda8b7bf35ac60ff80810a44d06eba (patch)
treeafcd029e075b8346ff71b0d2c1f05eecde2d308b /becommands/list.py
parentd7d616e4f8b885f55f8052e5eb22f3cec7ddbee4 (diff)
downloadbugseverywhere-284b8f7226dda8b7bf35ac60ff80810a44d06eba.tar.gz
Implemented sorting by severity level
Diffstat (limited to 'becommands/list.py')
-rw-r--r--becommands/list.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/becommands/list.py b/becommands/list.py
index 5bd54a2..0b27a25 100644
--- a/becommands/list.py
+++ b/becommands/list.py
@@ -29,6 +29,7 @@ def execute(args):
other_bugs.append(bug)
def list_bugs(cur_bugs, title):
+ cur_bugs.sort(bugdir.cmp_severity)
if len(cur_bugs) > 0:
print cmdutil.underlined(title)
for bug in cur_bugs: