From 47f30032f7c1e63604a6e5879bb44adc0e66ea1a Mon Sep 17 00:00:00 2001 From: blank X Date: Tue, 19 Jan 2021 10:41:37 +0700 Subject: [PATCH] Remove extra \n --- sukuinote/plugins/einfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sukuinote/plugins/einfo.py b/sukuinote/plugins/einfo.py index 50e335d..ca74d03 100644 --- a/sukuinote/plugins/einfo.py +++ b/sukuinote/plugins/einfo.py @@ -143,7 +143,7 @@ async def get_deai(client, entity): text += f'--- {i}\n' text += f'- Risk Factor: {match.group(2).capitalize()}\n' text += f'- Module: {DEAI_MODULE_CODES.get(match.group(3), match.group(3))}\n' - text += f'- Engine: {match.group(4).capitalize()}\n' + text += f'- Engine: {match.group(4).capitalize()}' comment = (match.group(5) or '').strip() if comment: text += f'\n- Comment: {html.escape(comment)}'