aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libbe/command/depend.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/libbe/command/depend.py b/libbe/command/depend.py
index 5898fc9..d0dd3b3 100644
--- a/libbe/command/depend.py
+++ b/libbe/command/depend.py
@@ -185,17 +185,17 @@ class Depend (libbe.command.Command):
for _bug in blocked_by])
else:
print >> self.stdout, \
- '\n'.join(['%s\t%s'%(_bug.id.user(), _bug.summary) 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()
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 blocks])
else:
print >> self.stdout, \
- '\n'.join([_bug.id.user() for _bug in blocks])
+ '\n'.join(['%s\t%s'%(_bug.id.user(), _bug.summary) for _bug in blocks])
return 0
def _long_help(self):