From e0cfbeecaa98a8febaba51febdc463212f750986 Mon Sep 17 00:00:00 2001 From: LaQuay Date: Sun, 14 Apr 2019 11:39:11 +0200 Subject: [PATCH] fix tvscript --- script/tv_script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/tv_script.py b/script/tv_script.py index b9672fc3..6254e385 100644 --- a/script/tv_script.py +++ b/script/tv_script.py @@ -176,7 +176,7 @@ print("JSON Updated") text_file = open('./public/output/channels.m3u8', "w+") text_file.write("# @LaQuay https://github.com/LaQuay/TDTChannels" + "\n") text_file.write( - "#EXTM3U url-tvg=\"https://raw.githubusercontent.com/HelmerLuzo/TDTChannels_EPG/master/CanalesTDT_EPG.xml\"\n") + "#EXTM3U url-tvg=\"https://raw.githubusercontent.com/HelmerLuzo/TDTChannels_EPG/master/TDTChannels_EPG.xml\"\n") text_file.write(spain.to_m3u8()) text_file.write(international.to_m3u8()) text_file.write(andorra.to_m3u8()) @@ -187,7 +187,7 @@ print("M3U8 Updated") text_file = open('./public/output/channels.m3u', "w+") text_file.write("# @LaQuay https://github.com/LaQuay/TDTChannels" + "\n") text_file.write( - "#EXTM3U url-tvg=\"https://raw.githubusercontent.com/HelmerLuzo/TDTChannels_EPG/master/CanalesTDT_EPG.xml\"\n") + "#EXTM3U url-tvg=\"https://raw.githubusercontent.com/HelmerLuzo/TDTChannels_EPG/master/TDTChannels_EPG.xml\"\n") text_file.write(spain.to_m3u8()) text_file.write(international.to_m3u8()) text_file.write(andorra.to_m3u8())