From 3876e13d4d864865667c90a9f578b528ad61a7f0 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Sat, 5 Sep 2020 15:00:41 +0300 Subject: [PATCH] Move saved pack print --- import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import.py b/import.py index 5114db4..d1b892f 100644 --- a/import.py +++ b/import.py @@ -179,6 +179,7 @@ async def reupload_pack(client: TelegramClient, pack: StickerSetFull) -> None: "hash": pack.set.hash, "stickers": list(reuploaded_documents.values()), }, pack_file, ensure_ascii=False) + print(f"Saved {pack.set.title} as {pack.set.short_name}.json") add_to_index(os.path.basename(pack_path)) @@ -211,7 +212,6 @@ async def main(): for input_pack in input_packs: pack: StickerSetFull = await client(GetStickerSetRequest(input_pack)) await reupload_pack(client, pack) - print(f"Saved {pack.set.title} as {pack.set.short_name}.json") else: parser.print_help()