Fixed lovecalculator (#57)

Replaced space with two underscores
pull/60/head
Akubits 6 years ago committed by bobloy
parent 871c737a60
commit b20b098076

@ -30,7 +30,7 @@ class LoveCalculator(Cog):
soup_object = BeautifulSoup(await response.text(), "html.parser")
try:
description = (
soup_object.find("div", attrs={"class": "result score"}).get_text().strip()
soup_object.find("div", attrs={"class": "result__score"}).get_text().strip()
)
except:
description = "Dr. Love is busy right now"

Loading…
Cancel
Save