aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/pride/pride_anthem.py
diff options
context:
space:
mode:
authorGravatar Kieran Siek <[email protected]>2021-06-07 15:53:40 +0800
committerGravatar GitHub <[email protected]>2021-06-07 15:53:40 +0800
commit267fe2c8528ff95332fc268cc9ac53411e8034e7 (patch)
treea800f1ec03c6b11bbc2b410a4d61518fd2576e94 /bot/exts/pride/pride_anthem.py
parentmade minor typo changes (diff)
parentMerge pull request #770 from python-discord/docker-compose-restart-policy (diff)
Merge branch 'main' into master
Diffstat (limited to 'bot/exts/pride/pride_anthem.py')
-rw-r--r--bot/exts/pride/pride_anthem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/pride/pride_anthem.py b/bot/exts/pride/pride_anthem.py
index 4650595a..05286b3d 100644
--- a/bot/exts/pride/pride_anthem.py
+++ b/bot/exts/pride/pride_anthem.py
@@ -24,7 +24,7 @@ class PrideAnthem(commands.Cog):
If none can be found, it will log this as well as provide that information to the user.
"""
if not genre:
- return random.choice(self.anthems)
+ return random.choice(VIDEOS)
else:
songs = [song for song in VIDEOS if genre.casefold() in song["genre"]]
try: