From beba69632c0a57e40bda1e9b02f4a8eb8d74cbc4 Mon Sep 17 00:00:00 2001 From: Aleksey Chubukov Date: Tue, 7 Feb 2023 09:55:37 +0300 Subject: [PATCH] fix small typo in logging message --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index ce74019..13aea25 100644 --- a/bot.py +++ b/bot.py @@ -29,7 +29,7 @@ class StickerPackDownloader: req = functions.messages.GetStickerSetRequest(stickerset=inputpack,hash=0) await for_online() stickers = await self.client(req) - self._log.info("downloadding stickerset %s %s", inputpack.id, stickers.set.title) + self._log.info("downloading stickerset %s %s", inputpack.id, stickers.set.title) sticker_dir = self.sticker_downloads/str(inputpack.id) sticker_dir.mkdir(exist_ok=True) with open(str(sticker_dir/'meta.txt'), 'w') as meta: