From 20ad0636371e16ec685215288d7a8c3639108586 Mon Sep 17 00:00:00 2001 From: Ovler Date: Thu, 13 Jun 2024 22:55:40 +0800 Subject: [PATCH] chore: typo fix --- biliarchiver/rest_api/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biliarchiver/rest_api/main.py b/biliarchiver/rest_api/main.py index ad35aed..0cf7fb9 100644 --- a/biliarchiver/rest_api/main.py +++ b/biliarchiver/rest_api/main.py @@ -107,7 +107,7 @@ async def scheduler(): while True: print("Getting a video URL... If no video URL is printed, the queue is empty.") video = await pending_queue.get() - print(f"Start donwloading {video}") + print(f"Start downloading {video}") video.status = VideoStatus.downloading await other_queue.put(video)