From 44e2ef0b233c23692d7579876b946e1a58309cef Mon Sep 17 00:00:00 2001 From: Will Woods Date: Mon, 13 Oct 2008 17:10:15 -0400 Subject: Fix --full output for BZ3 - patch from Don Zickus --- bin/bugzilla | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/bugzilla b/bin/bugzilla index b9cc8ec..6c9dfbc 100755 --- a/bin/bugzilla +++ b/bin/bugzilla @@ -470,7 +470,7 @@ def main(): if b.blocked: print "Blocked: %s" % " ".join([str(i) for i in b.blocked]) if b.dependson: print "Depends: %s" % " ".join([str(i) for i in b.dependson]) for c in b.longdescs: - print "* %s - %s (%s):\n%s\n" % (c['time'],c['name'],c['email'] or c['safe_email'],c['body']) + print "* %s - %s (%s):\n%s\n" % (c['time'],c['author'],c['email'] or c['safe_email'],c['body']) elif opt.output == 'normal': for b in buglist: print b -- cgit