Fix syntax error in OAuth callback handler reference

This commit is contained in:
2026-02-14 11:42:37 -07:00
parent dc14baf426
commit 19af20e700

View File

@@ -36,7 +36,7 @@ class OAuthCallbackHandler(BaseHTTPRequestHandler):
params = parse_qs(query)
if "code" in params:
OAuth CallbackHandler.authorization_code = params["code"][0]
OAuthCallbackHandler.authorization_code = params["code"][0]
self.send_response(200)
self.send_header("Content-type", "text/html")
self.end_headers()