aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2022-12-15 18:18:43 +0000
committerGravatar GitHub <[email protected]>2022-12-15 18:18:43 +0000
commit97740abd4c600df543a354366496ae7b10873eb8 (patch)
treedadc16ae29f63db2e966256258e76c408017f514 /bot
parentIgnore ellipses when suggesting commands (diff)
parentMerge pull request #1169 from python-discord/kata (diff)
Merge branch 'main' into let-me-ellipsize
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/utilities/challenges.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utilities/challenges.py b/bot/exts/utilities/challenges.py
index 1a5bf289..54e57212 100644
--- a/bot/exts/utilities/challenges.py
+++ b/bot/exts/utilities/challenges.py
@@ -118,7 +118,7 @@ class Challenges(commands.Cog):
return error_embed
soup = BeautifulSoup(await response.text(), features="lxml")
- first_kata_div = await to_thread(soup.find_all, "div", class_="item-title px-0")
+ first_kata_div = await to_thread(soup.find_all, "div", class_="list-item-kata")
if not first_kata_div:
raise commands.BadArgument("No katas could be found with the filters provided.")