From 388358a41375afdca0d29583a0851bfb5fe720f8 Mon Sep 17 00:00:00 2001 From: gian Date: Wed, 7 Jul 2010 09:03:18 +0200 Subject: Updated the changes following Chris Rewview --- libbe/command/depend.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libbe/command') 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): -- cgit