1
0
Fork 0

[utils] HTTPHeaderDict: Handle byte values

This commit is contained in:
pukkandan 2023-07-30 03:18:10 +05:30
commit 3f7965105d
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
2 changed files with 4 additions and 0 deletions

View file

@ -65,6 +65,8 @@ class HTTPHeaderDict(collections.UserDict, dict):
self.update(kwargs)
def __setitem__(self, key, value):
if isinstance(value, bytes):
value = value.decode('latin-1')
super().__setitem__(key.title(), str(value))
def __getitem__(self, key):