summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2022-12-20 09:16:42 -0800
committerKevin McCarthy <kevin@8t8.us>2022-12-20 09:16:42 -0800
commit90236f5ab856334b3ad6be6ee11d2e5857c38372 (patch)
tree2fc008b33a9ba54a9a61b7d3ee52f56f93554c36
parent9917c0eae89edaaca076a313dc2902a9b1ead03f (diff)
parent7c4fa47888d0dee4529f3a521bec76420528776e (diff)
Merge branch 'stable'
-rw-r--r--contrib/mutt_oauth2.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/mutt_oauth2.py b/contrib/mutt_oauth2.py
index ed241fc6..52358e94 100644
--- a/contrib/mutt_oauth2.py
+++ b/contrib/mutt_oauth2.py
@@ -239,6 +239,7 @@ if args.authorize:
'code': authcode,
'client_secret': registration['client_secret'],
'code_verifier': verifier})
+ print('Exchanging the authorization code for an access token')
try:
response = urllib.request.urlopen(registration['token_endpoint'],
urllib.parse.urlencode(p).encode())