This commit is contained in:
doms9 2025-10-15 10:53:54 -04:00
parent b110aee1e8
commit 00000d9ba6
11 changed files with 121 additions and 135 deletions

View file

@ -83,7 +83,7 @@ async def main() -> None:
encoding="utf-8",
)
log.info(f"Base + Events saved to {COMBINED_FILE.name}")
log.info(f"Base + Events saved to {COMBINED_FILE.resolve()}")
EVENTS_FILE.write_text(
'#EXTM3U url-tvg="https://raw.githubusercontent.com/doms9/iptv/refs/heads/default/EPG/TV.xml"\n'
@ -91,7 +91,7 @@ async def main() -> None:
encoding="utf-8",
)
log.info(f"Events saved to {EVENTS_FILE.name}")
log.info(f"Events saved to {EVENTS_FILE.resolve()}")
if __name__ == "__main__":