Tweak error wording

This commit is contained in:
Thomas Sileo 2022-09-16 18:37:09 +02:00
parent b99552384c
commit 9093659b0a
2 changed files with 2 additions and 2 deletions

View file

@ -276,7 +276,7 @@ async def _check_access_token(
if now() > access_token_info.created_at.replace(tzinfo=timezone.utc) + timedelta(
seconds=access_token_info.expires_in
):
logger.info("Access token is expired")
logger.info("Access token has expired")
return False, None
return True, access_token_info