From 9bfac949bf3764f61a42633b88e54ce766d95786 Mon Sep 17 00:00:00 2001 From: Aaron Bentley Date: Mon, 21 Mar 2005 14:10:43 +0000 Subject: Stopped showing targets under target-specific headings --- libbe/cmdutil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libbe/cmdutil.py') diff --git a/libbe/cmdutil.py b/libbe/cmdutil.py index 7ce8ac2..86fee80 100644 --- a/libbe/cmdutil.py +++ b/libbe/cmdutil.py @@ -42,9 +42,9 @@ def get_bug(spec, bug_dir=None): raise UserError("No bug matches %s" % spec) return matches[0] -def bug_summary(bug, bugs): +def bug_summary(bug, bugs, no_target=False): target = bug.target - if target is None: + if target is None or no_target: target = "" else: target = " Target: %s" % target -- cgit