diff --git a/HSMensaW_botA.py.BAK b/HSMensaW_botA.py.BAK index 305693b..64977c4 100644 --- a/HSMensaW_botA.py.BAK +++ b/HSMensaW_botA.py.BAK @@ -114,9 +114,8 @@ class HSMensaW(telepot.aio.helper.ChatHandler): async def send_essen(chat_id): global datum, essen - nachricht = "Speiseplan am WOCHENTAG, den %s:\n" % datum.strftime("%d. MONAT %Y") + nachricht = "Speiseplan am %s, den %s:\n" % (wochentage[datum.weekday()], datum.strftime("%d. MONAT %Y")) nachricht = nachricht.replace("MONAT", monate[(datum.month - 1) % 12]) - nachricht = nachricht.replace("WOCHENTAG", wochentage[datum.weekday()]) for i in essen: nachricht += "- " + str(i).replace(".", ",") + "\n\n" await bot.sendMessage(chat_id, nachricht, "markdown")