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 hcoura
Recipients hcoura, vinay.sajip, xtreak
Date 2019-12-28.15:48:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1577548103.92.0.392847806756.issue39142@roundup.psfhosted.org>
In-reply-to
Content
Sorry for not sending a proper reproducible script when submitting the issue. End of the day and quite frustrated with the bug, anyway, I attached a full script that will show the error.

This is the custom handler I used:

class MyHandler(logging.StreamHandler):
    def __init__(self, resource, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.resource: namedtuple = resource
    
    def emit(self, record):
        record.msg += f" {self.resource.type}"
        return super().emit(record)


self.resource.type will throw and AttributeError when logging, because resource gets converted from a namedtuple to a ConvertingTuple.
History
Date User Action Args
2019-12-28 15:48:23hcourasetrecipients: + hcoura, vinay.sajip, xtreak
2019-12-28 15:48:23hcourasetmessageid: <1577548103.92.0.392847806756.issue39142@roundup.psfhosted.org>
2019-12-28 15:48:23hcouralinkissue39142 messages
2019-12-28 15:48:23hcouracreate