From c14b0fe462c22a24302a6734e6d33f8986f2be07 Mon Sep 17 00:00:00 2001 From: pipcat Date: Mon, 30 Jul 2018 20:03:17 +0200 Subject: [PATCH] =?UTF-8?q?Correcci=C3=B3n=20para=20acentos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin.video.alfa/channels/setting.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin.video.alfa/channels/setting.py b/plugin.video.alfa/channels/setting.py index 47770941..806558e9 100644 --- a/plugin.video.alfa/channels/setting.py +++ b/plugin.video.alfa/channels/setting.py @@ -543,7 +543,8 @@ def channels_onoff(item): for channel in channels_list: channel_parameters = channeltools.get_channel_parameters(channel.channel) lbl = '%s' % channel_parameters['language'] - lbl += ' %s' % [config.get_localized_category(categ) for categ in channel_parameters['categories']] + # ~ lbl += ' %s' % [config.get_localized_category(categ) for categ in channel_parameters['categories']] + lbl += ' %s' % ', '.join(config.get_localized_category(categ) for categ in channel_parameters['categories']) it = xbmcgui.ListItem(channel.title, lbl) it.setArt({ 'thumb': channel.thumbnail, 'fanart': channel.fanart })