def getControl(self, controlId):
if not controlId:
return None
try:
return super(TVGuide, self).getControl(controlId)
except Exception as detail:
#log(traceback.print_stack())
#xbmc.log("EXCEPTION: (script.tvguide.fullscreen) TVGuide.getControl %s" % detail, xbmc.LOGERROR)
if controlId in self.ignoreMissingControlIds:
return None
if not self.isClosing:
self.close()
return None
评论列表
文章目录