We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e69c989 commit ab4f7eaCopy full SHA for ab4f7ea
aioauth/utils.py
@@ -181,7 +181,7 @@ def decode_auth_headers(authorization: str) -> Tuple[str, str]:
181
"""
182
scheme, param = get_authorization_scheme_param(authorization)
183
if not authorization or scheme.lower() != "basic":
184
- raise ValueError("Invalid authoirzation header string.")
+ raise ValueError("Invalid authorization header string.")
185
186
try:
187
data = b64decode(param).decode("ascii")
0 commit comments