diff options
Diffstat (limited to 'arthur/utils.py')
-rw-r--r-- | arthur/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arthur/utils.py b/arthur/utils.py index 090abc5..07e0f19 100644 --- a/arthur/utils.py +++ b/arthur/utils.py @@ -10,7 +10,7 @@ def generate_error_message( emote: str = ":no_entry_sign:", ) -> str: """Generate an error message to return to Discord.""" - return f"{emote} **{description}** {description}" + return f"{emote} **{title}** {description}" def datetime_to_discord(time: datetime, format: str = "f") -> str: |