From 188198bc11ce8da3862cca2042087348c10f0a25 Mon Sep 17 00:00:00 2001 From: Joscha Date: Wed, 25 May 2016 00:53:19 +0200 Subject: [PATCH] Fix colon placement in help text --- yaboli/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaboli/bot.py b/yaboli/bot.py index 70c7c62..d63dd08 100644 --- a/yaboli/bot.py +++ b/yaboli/bot.py @@ -480,7 +480,7 @@ class Bot(): command = command[1:] if command in self.detailed_helptexts: - msg = "Detailed help for !{}\n:".format(command) + msg = "Detailed help for !{}:\n".format(command) msg += self.detailed_helptexts[command] else: msg = "No detailed help text found for !{}.".format(command)