fixed some typo on the comment

This commit is contained in:
sh1nobu 2021-09-07 16:43:02 +08:00
parent 0d321c8107
commit fe3832b127

View File

@ -27,7 +27,7 @@ def get_download_links(episode_link):
soup = BeautifulSoup(episode_link_resp.content, "html.parser")
exist = soup.find("h1", {"class": "entry-title"})
if exist is None:
# 202
# 200
link = soup.find("li", {"class": "dowloads"})
return link.a.get("href")
else: