From 4e5f85739767287098c977276a4fdb55e1f39735 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Wed, 9 May 2018 06:02:42 -0400 Subject: [PATCH] Still need to skip "_tivo_4K" sections when building list of found TiVos. --- config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.py b/config.py index 87b7ef6..6ba2c66 100644 --- a/config.py +++ b/config.py @@ -57,7 +57,7 @@ def reset(): for section in config.sections(): if section.startswith('_tivo_'): tsn = section[6:] - if tsn.upper() not in ['SD', 'HD']: + if tsn.upper() not in ['SD', 'HD', '4K']: tivos_found = True tivos[tsn] = Bdict(config.items(section)) -- 2.11.4.GIT