Message109376
| Author |
nicdumz |
| Recipients |
aalbrecht, barry, cjw296, djc, gagern, nicdumz, salty-horse, splorgdar |
| Date |
2010年07月06日.09:40:56 |
| SpamBayes Score |
0.3313182 |
| Marked as misclassified |
No |
| Message-id |
<1278409258.94.0.660433696526.issue1974@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Sure, where was my head.
So, a simple patch like this one:
_oldheaderinit = email.Header.Header.__init__
def _unifiedheaderinit(self, *args, **kw):
# override continuation_ws
kw['continuation_ws'] = ' '
_oldheaderinit(self, *args, **kw)
email.Header.Header.__dict__['__init__'] = _unifiedheaderinit
fixes the issue for us, and might be helpful to others. |
|