diff options
| author | 2020-10-01 04:01:58 +0800 | |
|---|---|---|
| committer | 2020-10-01 04:09:34 +0800 | |
| commit | e18893760b115600b7b03a60ce5bfb80e59fb882 (patch) | |
| tree | c11d3e328df2a182a962405a929d2d3319775040 | |
| parent | Remove prefix when appending a reason (diff) | |
Add bold styling for vertical bar separators
| -rw-r--r-- | bot/exts/moderation/infraction/management.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/infraction/management.py b/bot/exts/moderation/infraction/management.py index 6b3e701c7..1cdcf6568 100644 --- a/bot/exts/moderation/infraction/management.py +++ b/bot/exts/moderation/infraction/management.py @@ -87,7 +87,7 @@ class ModManagement(commands.Cog): else: old_infraction = await self.bot.api_client.get(f"bot/infractions/{infraction_id}") - reason = fr"{old_infraction['reason']} \|\| {reason}" + reason = fr"{old_infraction['reason']} **\|\|** {reason}" await ctx.invoke(self.infraction_edit, infraction_id=infraction_id, duration=duration, reason=reason) |