mirror of https://github.com/zulip/zulip.git
Fix typo in Google OAuth error message.
This commit is contained in:
parent
5d54f66047
commit
ed412281d0
|
@ -499,7 +499,7 @@ def finish_google_oauth2(request):
|
|||
},
|
||||
)
|
||||
if resp.status_code != 200:
|
||||
raise Exception('Could not convert google pauth2 code to access_token\r%r' % resp.text)
|
||||
raise Exception('Could not convert google oauth2 code to access_token\r%r' % resp.text)
|
||||
access_token = extract_json_response(resp)['access_token']
|
||||
|
||||
resp = requests.get(
|
||||
|
|
Loading…
Reference in New Issue