fix(moderation): fixed incorrect formatting in evidenceformat codeblock

This commit is contained in:
Seaswimmer 2023-12-18 18:28:25 -05:00
parent 05774f87c2
commit 4969a55e6f
Signed by untrusted user: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -138,7 +138,7 @@ async def embed_factory(embed_type: str, color: Color, /, interaction: Interact
content = f"{codeblock}prolog\nCase: {case_dict['moderation_id']:,} ({str.title(case_dict['moderation_type'])})\n\nTarget: {target_name} ({target_user['id']})\nModerator: {moderator_name} ({moderator_user['id']})"
if case_dict['duration'] != 'NULL':
content += f"**Duration:** {humanize.precisedelta(td)}"
content += f"Duration: {humanize.precisedelta(td)}"
content += f"\nReason: {case_dict['reason']}{codeblock}"