bot: main: fix description not being split
Signed-off-by: Max R. Carrara <max@aequito.sh>
This commit is contained in:
parent
663abf56bc
commit
14be2289a9
1 changed files with 2 additions and 1 deletions
|
|
@ -81,7 +81,8 @@ def setup_bot() -> commands.Bot:
|
||||||
]
|
]
|
||||||
|
|
||||||
description = "\n\n".join(
|
description = "\n\n".join(
|
||||||
" ".join(line.strip() for line in paragraph) for paragraph in desc_paragraphs
|
" ".join(line.strip() for line in paragraph.split("\n"))
|
||||||
|
for paragraph in desc_paragraphs
|
||||||
)
|
)
|
||||||
|
|
||||||
command_prefix = Environment.bot_prefix()
|
command_prefix = Environment.bot_prefix()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue