aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/cmdutil.py
diff options
context:
space:
mode:
authorAaron Bentley <abentley@panoramicfeedback.com>2005-03-21 14:10:43 +0000
committerAaron Bentley <abentley@panoramicfeedback.com>2005-03-21 14:10:43 +0000
commit9bfac949bf3764f61a42633b88e54ce766d95786 (patch)
tree305c3390a90693fdab818fd8360051fec149456e /libbe/cmdutil.py
parent052bdf5a83c127f79b8518c41f2f8728f7125362 (diff)
downloadbugseverywhere-9bfac949bf3764f61a42633b88e54ce766d95786.tar.gz
Stopped showing targets under target-specific headings
Diffstat (limited to 'libbe/cmdutil.py')
-rw-r--r--libbe/cmdutil.py4
1 files changed, 2 insertions, 2 deletions
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