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 daniel.passaro
Recipients daniel.passaro
Date 2016-12-23.19:08:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1482520139.91.0.499331171389.issue29056@psf.upfronthosting.co.za>
In-reply-to
Content
Working around this issue can be done by overriding format() in subclasses like so:

    def format(self, record):
        record.exc_text = ''
        try:
            return super().format(record)
        finally:
            record.exc_text = ''
History
Date User Action Args
2016-12-23 19:08:59daniel.passarosetrecipients: + daniel.passaro
2016-12-23 19:08:59daniel.passarosetmessageid: <1482520139.91.0.499331171389.issue29056@psf.upfronthosting.co.za>
2016-12-23 19:08:59daniel.passarolinkissue29056 messages
2016-12-23 19:08:59daniel.passarocreate