Fix colon placement in help text

This commit is contained in:
Joscha 2016-05-25 00:53:19 +02:00
parent f91e3b8193
commit 188198bc11

View file

@ -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)