From d82b40c45684b0dd17f2420be1b407568f49a74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A1lm=C3=A1n=20=E2=80=9EKAMI=E2=80=9D=20Szalai?= Date: Wed, 15 Mar 2023 06:46:54 +0100 Subject: [PATCH] Try to avoid f-string expression part cannot include a backslash error --- make_playlist.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_playlist.py b/make_playlist.py index 8b82bcb..d92c0a9 100755 --- a/make_playlist.py +++ b/make_playlist.py @@ -33,7 +33,7 @@ def main(): if not (os.path.isdir(dir_playlists)): os.mkdir(dir_playlists) with open("playlist.m3u8", "w", encoding='utf-8') as playlist: - head_playlist = f'#EXTM3U x-tvg-url="{",".join(EPG_LIST).replace("\n","")}"' + head_playlist = f'#EXTM3U x-tvg-url="{",".join(EPG_LIST).replace({chr(92)} + "n","")}"' print(f'#EXTM3U x-tvg-url="{",".join(EPG_LIST)}"', file=playlist) os.chdir("lists") for filename in sorted(os.listdir(".")):