diff -r b6753521129d -r 1294a6bdf3bf common/mail.py --- a/common/mail.py Fri Jul 24 13:50:59 2009 +0200 +++ b/common/mail.py Fri Jul 24 14:33:37 2009 +0200 @@ -18,7 +18,7 @@ def addrheader(uaddr, uname=None): # even if an email address should be ascii, encode it using utf8 since - # application tests may generate non ascii email address + # automatic tests may generate non ascii email address addr = uaddr.encode('UTF-8') if uname: return '%s <%s>' % (header(uname).encode(), addr)