diff --git a/plugins/horoscope.py b/plugins/horoscope.py index baa0041cb..5b69bba96 100644 --- a/plugins/horoscope.py +++ b/plugins/horoscope.py @@ -69,7 +69,7 @@ def horoscope(text, db, bot, notice, nick): horoscope_text = soup.find("div", class_="horoscope-content").find("p").text ''' if not horoscope_text: - return "Could not get the horoscope for {}. Hororscope text error".format(sign) + return "Could not get the horoscope for {}.".format(text) else: horoscope_text = horoscope_text[0].text.strip() '''