From 22f687668848bc1495a08eba5a0ae410edb0be23 Mon Sep 17 00:00:00 2001 From: Darkn Neko Date: Thu, 23 Jan 2025 12:07:14 +0200 Subject: [PATCH] Remove a typo from startResponder --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index fa41b67..2d788d2 100644 --- a/main.py +++ b/main.py @@ -95,7 +95,7 @@ async def documentFetcher(client, message): @app.on_message(filters.command("start")) async def startResponder(client, message): - startMessage = "This bot converts any document libreoffice supports into a pdf\nSource code: https://git.darkn.space/neko/tg2pdf\nYou can add it into your group and it should detect the appropriate files automatically\nList of supported file formats:\n.doc .docx .doc\n.xls .xlsx\n.odt .ods\n.rtf .txt\n.html .csv .tsv\n.epub\n.odp .odp\n.odg\n.vsd .svg\n.ppt .pptx\n.abw .wps\n.tex" + startMessage = "This bot converts any document libreoffice supports into a pdf\nSource code: https://git.darkn.space/neko/tg2pdf\nYou can add it into your group and it should detect the appropriate files automatically\nList of supported file formats:\n.doc .docx\n.xls .xlsx\n.odt .ods\n.rtf .txt\n.html .csv .tsv\n.epub\n.odp .odp\n.odg\n.vsd .svg\n.ppt .pptx\n.abw .wps\n.tex" await message.reply(startMessage, reply_to_message_id=message.id)