From 9f3e40c0d40f174280e69ac28e19fb8bdb273922 Mon Sep 17 00:00:00 2001 From: Gianluca Date: Wed, 7 Jul 2010 00:24:20 +0200 Subject: [PATCH] Added the bug summary to the output of the 'be depend' command --- libbe/command/depend.py | 4 ++-- 1 file 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() -- 2.26.2