From beaf398a4eddc5ab5aa903d1906d4819d74c1f5a Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Thu, 14 May 2020 19:32:10 +0200 Subject: [PATCH] Altro Fix Menu Rapido --- platformcode/keymaptools.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/platformcode/keymaptools.py b/platformcode/keymaptools.py index 4fe769e9..57bd6072 100644 --- a/platformcode/keymaptools.py +++ b/platformcode/keymaptools.py @@ -86,8 +86,6 @@ def delete_key(): class Main(xbmcgui.WindowXMLDialog): def __init__(self, *args, **kwargs): self.items = [] - logger.info(str(args)) - logger.info(str(kwargs)) def onInit(self): #### Compatibilidad con Kodi 18 #### @@ -139,7 +137,7 @@ class Main(xbmcgui.WindowXMLDialog): from core.item import Item channel = __import__('specials.%s' % channel_name, fromlist=["specials.%s" % channel_name]) self.close() - open_shortcut_menu(channel.mainlist(Item().fromjson(action)), channel_name) + open_shortcut_menu(channel.mainlist(Item()), channel_name)