Skip to content

Commit

Permalink
Merge pull request #169 from googlefonts/logout-fix-issue-168
Browse files Browse the repository at this point in the history
Fix close call -> aclose
  • Loading branch information
justvanrossum authored Apr 15, 2024
2 parents 95f36af + 0a0957d commit 421eac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra_rcjk/projectmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def logoutHandler(self, request: web.Request) -> web.Response:
if token is not None and token in self.authorizedClients:
client = self.authorizedClients.pop(token)
logger.info(f"logging out '{client.username}'")
await client.close()
await client.aclose()
raise web.HTTPFound("/")

async def authorize(self, request: web.Request) -> str | None:
Expand Down

0 comments on commit 421eac6

Please sign in to comment.