Dan Passaro added the comment:

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 = ''

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue29056>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to