From 9b2b7e71ce7fca42934a6cb6a0b3edfd524448bc Mon Sep 17 00:00:00 2001 From: NFL_jiancx <1678594309@qq.com> Date: Sun, 9 Feb 2025 18:45:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=83=A8=E5=88=86=E7=94=A8?= =?UTF-8?q?=E6=88=B7=E9=9F=B3=E4=B9=90=E6=97=A0=E6=B3=95=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=AE=8C=E5=85=A8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- NFLmusic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NFLmusic.py b/NFLmusic.py index 51c9daa..419318d 100644 --- a/NFLmusic.py +++ b/NFLmusic.py @@ -979,7 +979,7 @@ def former_song(): except ValueError: current_index = -1 abs_path = song_list[current_index - 1] - music_file_without_endswith = abs_path.rsplit("/")[-1].split(".", 1)[0] + music_file_without_endswith = abs_path.rsplit("/")[-1].rsplit(".", 1)[0] music_playing = abs_path try: lyric = lyrics.load_lyrics(f"{path}/{music_file_without_endswith}.lrc")