diff options
author | W. Trevor King <wking@drexel.edu> | 2008-11-15 18:35:41 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2008-11-15 18:35:41 -0500 |
commit | 03011f286420d8e091052019ee41eba021041e61 (patch) | |
tree | fcf389e28c1142d61015bf37134925d4b209ba25 /becommands/list.py | |
parent | 137f084f2931a0e2e1fa3076beadac17b88ef6b6 (diff) | |
download | bugseverywhere-03011f286420d8e091052019ee41eba021041e61.tar.gz |
Moved libbe.cmdutil.bug_summary() to libbe.bug.Bug.string().
This seems like a natual place for a function that only operates on Bugs.
Diffstat (limited to 'becommands/list.py')
-rw-r--r-- | becommands/list.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/becommands/list.py b/becommands/list.py index e127c50..6cd7826 100644 --- a/becommands/list.py +++ b/becommands/list.py @@ -107,8 +107,7 @@ def execute(args): if title != None: print cmdutil.underlined(title) for bug in cur_bugs: - print cmdutil.bug_summary(bug, all_bugs, no_target=no_target, - shortlist=True), + print bug.string(all_bugs, shortlist=True), list_bugs(bugs, no_target=False) |