From 4bb860b818f21638e6367a05e5573d8adc76e13c Mon Sep 17 00:00:00 2001 From: fram3d Date: Tue, 6 Feb 2024 02:07:47 +0100 Subject: [PATCH] add newlines to help --- functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions.py b/functions.py index 739b9c0..b35c079 100644 --- a/functions.py +++ b/functions.py @@ -8,8 +8,8 @@ def processmsg(msg, rcpt): def command(msg, rcpt): if msg.startswith("!help"): - response = "chatbot commands: \n" - response += "!help Show this help page" + response = "chatbot commands:" + "\n" + response += "!help Show this help page" + "\n" response += "!ai [message] Ask llama2" return response elif msg.startswith("!ai"):