Remove a typo from startResponder

This commit is contained in:
Darkn Neko 2025-01-23 12:07:14 +02:00
parent 7a3b9a7a3c
commit 22f6876688
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ async def documentFetcher(client, message):
@app.on_message(filters.command("start")) @app.on_message(filters.command("start"))
async def startResponder(client, message): 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) await message.reply(startMessage, reply_to_message_id=message.id)