diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-04-28 11:17:27 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-04-28 11:19:40 -0700 |
| commit | 1f6231ef399702c4ec0ff76b13455b00af23f91b (patch) | |
| tree | 05d88f658165c043a29744580dfc76d30cf5e5f9 /bemani | |
| parent | e44189b877032c00f4a82a2dda8e56890b9df869 (diff) | |
update frontend for pc, dance around/rush
Diffstat (limited to 'bemani')
| -rw-r--r-- | bemani/polaris_chord.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bemani/polaris_chord.py b/bemani/polaris_chord.py index 2880dae..a025d83 100644 --- a/bemani/polaris_chord.py +++ b/bemani/polaris_chord.py @@ -34,7 +34,7 @@ def parse_polaris_chord_news_site(html: str) -> list[dict]: headline = li.find('li', class_='news_title').text.strip() detail = li.find('li', class_='news_detail') - content = detail.get_text(separator='\n').strip() + content = detail.get_text().strip() first_a = detail.find('a', href=True) url = first_a['href'] if first_a else None |
