[Reportbug-commits] [SCM] Reportbug - reports bugs in the Debian distribution branch, master, updated. 4.8-6-g25aff63
Sandro Tosi
morph at debian.org
Thu Nov 12 22:25:43 UTC 2009
The following commit has been merged in the master branch:
commit aca9f413c8e9b5716026c98aacbaab3c4072f61e
Author: chaica <chaica at ohmytux.com>
Date: Thu Nov 5 23:44:30 2009 +0100
printing non encoded addresses after having sent the bug report
diff --git a/reportbug/submit.py b/reportbug/submit.py
index e48ee52..0d8af0d 100644
--- a/reportbug/submit.py
+++ b/reportbug/submit.py
@@ -469,13 +469,13 @@ def send_report(body, attachments, mua, fromaddr, sendto, ccaddr, bccaddr,
if len(addresses):
ewrite("Copies sent to:\n")
- for address in addresses:
- ewrite(' %s\n', rfc822.dump_address_pair(address))
+ for address in addrs:
+ ewrite(' %s\n', address)
if debbugs_cc and rtype == 'debbugs':
ewrite("Copies will be sent after processing to:\n")
- for address in debbugs_cc:
- ewrite(' %s\n', rfc822.dump_address_pair(address))
+ for address in cclist:
+ ewrite(' %s\n', address)
if not (exinfo or kudos) and rtype == 'debbugs' and sysinfo and not failed:
ewrite('\n')
--
Reportbug - reports bugs in the Debian distribution
More information about the Reportbug-commits
mailing list