Fix syntax error in OAuth callback handler reference
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user