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)