aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Parth Verma <[email protected]>2023-08-21 17:52:27 +0530
committerGravatar GitHub <[email protected]>2023-08-21 12:22:27 +0000
commitb4ab162d7c9e59195c917e114a50990d9c52ce4a (patch)
tree5b86eb0197c6f50506042d6507f0de1a5d4ac47d /bot
parentUse title as parameter name for Embed in monster_vote (diff)
Corrected attribute name to fetch github url in extensions.py (#1348)
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/core/extensions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/core/extensions.py b/bot/exts/core/extensions.py
index 87ef2ed1..f96b0292 100644
--- a/bot/exts/core/extensions.py
+++ b/bot/exts/core/extensions.py
@@ -153,7 +153,7 @@ class Extensions(commands.Cog):
embed = Embed(colour=Colour.og_blurple())
embed.set_author(
name="Extensions List",
- url=Client.github_bot_repo,
+ url=Client.github_repo,
icon_url=str(self.bot.user.display_avatar.url)
)