diff -r 201ce0d389f3 -r 713e220e7425 common/mail.py --- a/common/mail.py Wed Jul 01 11:33:18 2009 +0200 +++ b/common/mail.py Wed Jul 01 11:33:40 2009 +0200 @@ -19,7 +19,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 - addr = uaddr.encode('UTF-8') + addr = uaddr.encode('UTF-8') if uname: return '%s <%s>' % (header(uname).encode(), addr) return addr