diff --git a/fetch_holidays.py b/fetch_holidays.py index 411d4bd..6b92909 100755 --- a/fetch_holidays.py +++ b/fetch_holidays.py @@ -96,7 +96,7 @@ def get_paper(url: str) -> str: container = soup.find("td", class_="b12c") assert container, f"Can not get paper container from url: {url}" ret = container.get_text().replace("\u3000\u3000", "\n") - assert ret, f"Can not get paper context from url: {url}" + assert ret, f"Can not get paper content from url: {url}" return ret