Mercurial > public > mercurial-scm > hg-stable
diff mercurial/mail.py @ 17428:72803c8edaa4
avoid using abbreviations that look like spelling errors
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Mon, 27 Aug 2012 23:14:27 +0200 |
parents | e7cfe3587ea4 |
children | cf1304fbc184 |
line wrap: on
line diff
--- a/mercurial/mail.py Tue Aug 21 02:41:20 2012 +0200 +++ b/mercurial/mail.py Mon Aug 27 23:14:27 2012 +0200 @@ -13,7 +13,7 @@ _oldheaderinit = email.Header.Header.__init__ def _unifiedheaderinit(self, *args, **kw): """ - Python2.7 introduces a backwards incompatible change + Python 2.7 introduces a backwards incompatible change (Python issue1974, r70772) in email.Generator.Generator code: pre-2.7 code passed "continuation_ws='\t'" to the Header constructor, and 2.7 removed this parameter.