From 19032af970ec74882e09f43af840ed0cac502ffa Mon Sep 17 00:00:00 2001 From: HelmerLuzo <46137909+HelmerLuzo@users.noreply.github.com> Date: Sun, 7 Apr 2019 11:28:14 +0200 Subject: [PATCH] Update tv_script.py (#135) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit AƱadido a m3u8 y m3u los canales Andorra. --- script/tv_script.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/tv_script.py b/script/tv_script.py index a345ae8f..812637de 100644 --- a/script/tv_script.py +++ b/script/tv_script.py @@ -178,6 +178,7 @@ text_file.write("#EXTM3U" + "\n") text_file.write("# @LaQuay https://github.com/LaQuay/TDTChannels" + "\n") text_file.write(spain.to_m3u8()) text_file.write(international.to_m3u8()) +text_file.write(andorra.to_m3u8()) text_file.close() print("M3U8 Updated") @@ -187,6 +188,7 @@ text_file.write("#EXTM3U" + "\n") text_file.write("# @LaQuay https://github.com/LaQuay/TDTChannels" + "\n") text_file.write(spain.to_m3u8()) text_file.write(international.to_m3u8()) +text_file.write(andorra.to_m3u8()) text_file.close() print("M3U Updated") @@ -195,5 +197,6 @@ text_file = open('./public/output/userbouquet.tdtchannels.tv', "w+") text_file.write("#NAME @LaQuay https://github.com/LaQuay/TDTChannels" + "\n") text_file.write(spain.to_enigma2()) text_file.write(international.to_enigma2()) +text_file.write(andorra.to_enigma2()) text_file.close() print("ENIGMA2 Updated")