From: Gianluca Date: Tue, 6 Jul 2010 22:24:20 +0000 (+0200) Subject: Added the bug summary to the output of the 'be depend' command X-Git-Tag: 1.0.0~26 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9f3e40c0d40f174280e69ac28e19fb8bdb273922;p=be.git Added the bug summary to the output of the 'be depend' command --- 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()