diff options
Diffstat (limited to 'bandai_namco')
| -rw-r--r-- | bandai_namco/taiko.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bandai_namco/taiko.py b/bandai_namco/taiko.py index a417a45..7a4afe7 100644 --- a/bandai_namco/taiko.py +++ b/bandai_namco/taiko.py @@ -19,7 +19,7 @@ def parse_taiko_blog_site(html: str) -> list: date_obj = datetime.strptime(date_str, "%Y年%m月%d日") timestamp = int(time.mktime(date_obj.timetuple())) url_date = date_obj.strftime("%Y%m%d") - url = base_url + "/?m="+url_date + url = base_url + "/blog/?m="+url_date # Get headline headline_tag = article.select_one("h1") |
