summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorWill Woods <wwoods@redhat.com>2008-10-13 17:10:15 -0400
committerWill Woods <wwoods@redhat.com>2008-10-13 17:10:15 -0400
commit44e2ef0b233c23692d7579876b946e1a58309cef (patch)
treea27db9e151cd749060f4d07a8311ec837c4619c5 /bin
parenteaf1d6de32be2b06c93c5d70587e39d44b4d7d07 (diff)
downloadpython-bugzilla-44e2ef0b233c23692d7579876b946e1a58309cef.tar.gz
python-bugzilla-44e2ef0b233c23692d7579876b946e1a58309cef.tar.xz
python-bugzilla-44e2ef0b233c23692d7579876b946e1a58309cef.zip
Fix --full output for BZ3 - patch from Don Zickus
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bugzilla2
1 files changed, 1 insertions, 1 deletions
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