aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/command
diff options
context:
space:
mode:
authorgian <gian@grys.it>2010-07-07 09:03:18 +0200
committergian <gian@grys.it>2010-07-07 09:03:18 +0200
commit388358a41375afdca0d29583a0851bfb5fe720f8 (patch)
tree9306d2e6fbf1912211982e3c63254da2546c610f /libbe/command
parent9f3e40c0d40f174280e69ac28e19fb8bdb273922 (diff)
downloadbugseverywhere-388358a41375afdca0d29583a0851bfb5fe720f8.tar.gz
Updated the changes following Chris Rewview
Diffstat (limited to 'libbe/command')
-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):