figlet: last newline is not needed

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2023-11-06 21:03:49 -05:00
parent 1eac11cda4
commit 234c0bb13d
Signed by: vbatts
GPG key ID: E30EFAA812C6E5ED

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)
msg += '\n```'
msg += '```'
await evt.respond(msg)