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)}'