diff options
author | 2018-04-19 09:09:18 +0100 | |
---|---|---|
committer | 2018-04-19 09:09:18 +0100 | |
commit | 1554e440c54d27f11a030544167a063d1bd16a8f (patch) | |
tree | 0db3b6b2db53fdebcc23bff0f4bc1764b02e9cd1 | |
parent | Fixed bot avatar URL (diff) |
Changed Bot Avatar URL to appropriate constant
-rw-r--r-- | bot/cogs/bot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index e463ff76a..e3925ade1 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -12,7 +12,7 @@ from bot.constants import ( ADMIN_ROLE, BOT_CHANNEL, DEVTEST_CHANNEL, HELP1_CHANNEL, HELP2_CHANNEL, HELP3_CHANNEL, MODERATOR_ROLE, OWNER_ROLE, PYTHON_CHANNEL, - PYTHON_GUILD, VERIFIED_ROLE + PYTHON_GUILD, VERIFIED_ROLE, BOT_AVATAR_URL ) from bot.decorators import with_role @@ -66,7 +66,7 @@ class Bot: embed.set_author( name="Python Bot", url="https://github.com/discord-python/bot", - icon_url="https://raw.githubusercontent.com/discord-python/branding/master/logos/logo_circle/logo_circle.png" + icon_url=BOT_AVATAR_URL ) log.info(f"{ctx.author} called bot.about(). Returning information about the bot.") |