From e003d502c211e4e576e247fe703ddcce9e4dd189 Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Thu, 7 Jan 2021 17:25:47 -0500 Subject: [PATCH] Add missing comma to m3u --- fHDHR_web/api/m3u.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fHDHR_web/api/m3u.py b/fHDHR_web/api/m3u.py index f018cde..a427908 100644 --- a/fHDHR_web/api/m3u.py +++ b/fHDHR_web/api/m3u.py @@ -89,7 +89,7 @@ class M3U(): for chan_key in list(channel_item_dict.keys()): if not chan_key.startswith(tuple(["group-title", "stream_url"])): m3ustring += "%s=\"%s\" " % (chan_key, channel_item_dict[chan_key]) - m3ustring += "group-title=\"%s\"%s\n" % (channel_item_dict["group-title"], channel_item_dict["group-titleb"]) + m3ustring += "group-title=\"%s\",%s\n" % (channel_item_dict["group-title"], channel_item_dict["group-titleb"]) m3ustring += "%s\n" % channel_item_dict["stream_url"] fakefile.write(m3ustring)