From e0a310248beab422738d271679df681f6f3b39bc Mon Sep 17 00:00:00 2001 From: Taapat Date: Sat, 11 Nov 2023 17:18:17 +0200 Subject: [PATCH] Typo fix in choices constant --- src/FreeChannelsUi.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/FreeChannelsUi.py b/src/FreeChannelsUi.py index e279bd3..4f0e1ee 100644 --- a/src/FreeChannelsUi.py +++ b/src/FreeChannelsUi.py @@ -15,17 +15,17 @@ from . import _ -CHOUICES = [(True, _("add")), (False, _("ignore")), ("top", _("top of the list"))] +CHOICES = [(True, _("add")), (False, _("ignore")), ("top", _("top of the list"))] FREE_BOUQUET_REF = eServiceReference('1:7:1:0:0:0:0:0:0:0:FROM BOUQUET "userbouquet.freechannels.tv" ORDER BY bouquet') config.plugins.FreeChannels = ConfigSubsection() config.plugins.FreeChannels.delay = ConfigInteger(default=4, limits=(1, 20)) config.plugins.FreeChannels.allchannels = ConfigYesNo(default=True) -config.plugins.FreeChannels.language1 = ConfigSelection(default="top", choices=CHOUICES) -config.plugins.FreeChannels.language2 = ConfigSelection(default="top", choices=CHOUICES) -config.plugins.FreeChannels.language3 = ConfigSelection(default=True, choices=CHOUICES) -config.plugins.FreeChannels.language4 = ConfigSelection(default=True, choices=CHOUICES) +config.plugins.FreeChannels.language1 = ConfigSelection(default="top", choices=CHOICES) +config.plugins.FreeChannels.language2 = ConfigSelection(default="top", choices=CHOICES) +config.plugins.FreeChannels.language3 = ConfigSelection(default=True, choices=CHOICES) +config.plugins.FreeChannels.language4 = ConfigSelection(default=True, choices=CHOICES) class FreeChannelsMain(ChannelSelectionBase):