Return Authorization header as a string

This commit is contained in:
2025-09-11 09:49:07 -04:00
parent 48790eaa6f
commit 04f7408434
2 changed files with 7 additions and 10 deletions

View File

@@ -106,8 +106,9 @@ def make_auth_header(destination, method, path, content=None) -> str:
destination,
key,
sig,
)
),
'utf-8'
)
)
return authorization_headers[0]
return authorization_headers[0].decode('utf-8')