|
@@ -63,7 +63,7 @@ class Rollbot(Generic[RawMsg]):
|
|
|
if cmd is None or cmd.__doc__ is None:
|
|
|
help_msg = "Sorry! I don't have any explanation of that command"
|
|
|
else:
|
|
|
- help_msg = cmd.__doc__.strip()
|
|
|
+ help_msg = "\n".join(line.strip() for line in cmd.__doc__.split("\n"))
|
|
|
await self.respond(Response.from_message(message, help_msg))
|
|
|
return
|
|
|
|