From 75507067981dab5b27ce0016a1b9417bb46a7d42 Mon Sep 17 00:00:00 2001 From: Joscha Date: Tue, 24 May 2016 19:50:51 +0200 Subject: [PATCH] Fix detailed help message --- yaboli/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaboli/bot.py b/yaboli/bot.py index 6b0405b..e31607e 100644 --- a/yaboli/bot.py +++ b/yaboli/bot.py @@ -429,7 +429,7 @@ class Bot(): command = command[1:] if command in self.detailed_helptexts: - msg = "Detailed help for !{}:".format(command) + msg = "Detailed help for !{}\n:".format(command) msg += self.detailed_helptexts[command] else: msg = "No detailed help text found for !{}.".format(command)