This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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.
History
Date User Action Args
2010-07-06 09:40:59nicdumzsetrecipients: + nicdumz, barry, gagern, salty-horse, aalbrecht, cjw296, djc, splorgdar
2010-07-06 09:40:58nicdumzsetmessageid: <1278409258.94.0.660433696526.issue1974@psf.upfronthosting.co.za>
2010-07-06 09:40:57nicdumzlinkissue1974 messages
2010-07-06 09:40:57nicdumzcreate