From 284b8f7226dda8b7bf35ac60ff80810a44d06eba Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Fri, 18 Mar 2005 18:53:49 +0000 Subject: Implemented sorting by severity level --- becommands/list.py | 1 + 1 file changed, 1 insertion(+) (limited to 'becommands') 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: -- cgit