Message109376
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. |
|
Date |
User |
Action |
Args |
2010-07-06 09:40:59 | nicdumz | set | recipients:
+ nicdumz, barry, gagern, salty-horse, aalbrecht, cjw296, djc, splorgdar |
2010-07-06 09:40:58 | nicdumz | set | messageid: <1278409258.94.0.660433696526.issue1974@psf.upfronthosting.co.za> |
2010-07-06 09:40:57 | nicdumz | link | issue1974 messages |
2010-07-06 09:40:57 | nicdumz | create | |
|