Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mfshao committed Aug 19, 2024
1 parent 2de2d7d commit 6512c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wts/resources/oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def client_do_authorize():
raise AuthError("could not authorize; state did not match across auth requests")
try:
flask.current_app.logger.warning(f"token url: {token_url}")
print(**flask.request.args.to_dict())
print(flask.request.args.to_dict())
tokens = client.fetch_token(token_url, **flask.request.args.to_dict())
refresh_refresh_token(tokens, requested_idp, username_field)
except KeyError as e:
Expand Down

0 comments on commit 6512c32

Please sign in to comment.