adjust help message

This commit is contained in:
missytake 2025-08-27 12:37:02 +02:00
parent f220df12dc
commit 02341180b8
Signed by: missytake
GPG key ID: 04CC6658320518DF

View file

@ -65,9 +65,11 @@ def check_and_forward(msg: deltachat.Message, admin_chat: deltachat.Chat):
def send_help(msg: deltachat.Message):
"""Reply to the user with a help message."""
help_text = """
/start\tStart getting daily reminders.
/stop\tStop getting daily reminders.
/file\t(with an attachment) Add a list of entries which I can remind you of at specific dates.
/start\tStart getting messages which match keywords.
/list\tList current keywords
/add word1 word2\tAdd keywords to check for
/remove word1 word2\tRemove keywords from the list
/stop\tStop getting messages from this bot.
"""
reply(msg.chat, help_text, quote=msg)