aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/source.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/source.py b/bot/cogs/source.py
index 32f8d5e08..9e6109ca2 100644
--- a/bot/cogs/source.py
+++ b/bot/cogs/source.py
@@ -103,12 +103,12 @@ class BotSource(Cog):
else:
description = source_object.short_doc
- title = source_object.qualified_name
+ title = f"Command: {source_object.qualified_name}"
elif isinstance(source_object, str):
title = f"Tag: {source_object.split('/')[-1].split('.')[0]}"
description = ""
else:
- title = source_object.qualified_name
+ title = f"Cog: {source_object.qualified_name}"
description = source_object.description.splitlines()[0]
embed = Embed(title=title, description=description)