aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'arthur/utils.py')
-rw-r--r--arthur/utils.py2
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: