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 munrek
Recipients munrek
Date 2016-06-07.15:45:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465314338.49.0.176049462957.issue27251@psf.upfronthosting.co.za>
In-reply-to
Content
When trying to log a message with a registered HTTPHandler, using http authentication (by specifying a credentials tuple when constructing an HTTPHandler):

logging/handlers.py, in HTTPHandler.emit:

  if self.credentials:
    import base64
    s = ('u%s:%s' % self.credentials).encode('utf-8')
    s = 'Basic ' + base64.b64encode(s).strip()  # TypeError: Can't convert 'bytes' object to str implicitly
    h.putheader('Authorization', s)

It sounds like a python 2 to 3 conversion issue.

I also want to point out that there is no test covering http authentication in HTTPHandler.
History
Date User Action Args
2016-06-07 15:45:38munreksetrecipients: + munrek
2016-06-07 15:45:38munreksetmessageid: <1465314338.49.0.176049462957.issue27251@psf.upfronthosting.co.za>
2016-06-07 15:45:38munreklinkissue27251 messages
2016-06-07 15:45:37munrekcreate