diff --git a/py/iptv.py b/py/iptv.py index 170b009..bbac783 100644 --- a/py/iptv.py +++ b/py/iptv.py @@ -125,8 +125,8 @@ for url in urls: for line in lines: # 检查当前行是否包含'udp'或'rtp'字符串 if 'udp' in line or 'rtp' in line: - continue # 如果行包含'udp'或'rtp',则跳过当前循环迭代 - line = line.strip() + continue # 如果行包含'udp'或'rtp',则跳过当前循环迭代 + line = line.strip() if line: name, channel_url = line.split(',') urls = channel_url.split('/', 3)