aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command
diff options
context:
space:
mode:
authorGianluca <gian@grys.it>2010-07-07 00:24:20 +0200
committerGianluca <gian@grys.it>2010-07-07 00:24:20 +0200
commit9f3e40c0d40f174280e69ac28e19fb8bdb273922 (patch)
tree5b77b894c100d1a4b5e75fc3395c002d81f48d13 /libbe/command
parent4f7587413eb414a69c20fca97c8c75904f2f14f5 (diff)
downloadbugseverywhere-9f3e40c0d40f174280e69ac28e19fb8bdb273922.tar.gz
Added the bug summary to the output of the 'be depend' command
Diffstat (limited to 'libbe/command')
-rw-r--r--libbe/command/depend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/command/depend.py b/libbe/command/depend.py
index 92140eb..5898fc9 100644
--- a/libbe/command/depend.py
+++ b/libbe/command/depend.py
@@ -181,11 +181,11 @@ class Depend (libbe.command.Command):
print >> self.stdout, '%s blocked by:' % bugA.id.user()
if params['show-status'] == True:
print >> self.stdout, \
- '\n'.join(['%s\t%s' % (_bug.id.user(), _bug.status)
+ '\n'.join(['%s\t%s\t%s' % (_bug.id.user(), _bug.status, _bug.summary)
for _bug in blocked_by])
else:
print >> self.stdout, \
- '\n'.join([_bug.id.user() for _bug in blocked_by])
+ '\n'.join(['%s\t%s'%(_bug.id.user(), _bug.summary) for _bug in blocked_by])
blocks = get_blocks(bugdir, bugA)
if len(blocks) > 0:
print >> self.stdout, '%s blocks:' % bugA.id.user()