Skip to content

Commit 6e8c58c

Browse files
authored
Merge pull request #2 from thearyadev/route-caching
chore: fix quote
2 parents 45d4a02 + f349c5f commit 6e8c58c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ async def get(request: Request) -> Response:
6464
logger.info(f"[PROXY] {request.url.path} was cached, and is now invalid.")
6565
else:
6666
logger.info(
67-
f"[PROXY] {request.url.path} is cached until {cached_response_content[1].strftime("%Y-%m-%dT%H:%M:%S")}"
67+
f"[PROXY] {request.url.path} is cached until {cached_response_content[1].strftime('%Y-%m-%dT%H:%M:%S')}"
6868
)
6969
return Response(
7070
content=cached_response_content[0], media_type="application/json"

0 commit comments

Comments
 (0)