figlet: maybe that newline is needed

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2023-11-06 21:18:46 -05:00
parent d0d9f2427a
commit 9956f298f3
Signed by: vbatts
GPG Key ID: E30EFAA812C6E5ED
1 changed files with 1 additions and 1 deletions

View File

@ -22,5 +22,5 @@ class FigletBot(Plugin):
fig = pyfiglet.Figlet(font=fontname)
msg = f'Rendering with: {fontname}\n\n```'
msg += fig.renderText(message).strip()
msg += '```'
msg += '\n```'
await evt.respond(msg)