From 1f6231ef399702c4ec0ff76b13455b00af23f91b Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Mon, 28 Apr 2025 11:17:27 -0700 Subject: update frontend for pc, dance around/rush --- bemani/polaris_chord.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bemani') 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 -- cgit v1.2.3