X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=skin.py;h=a20f3eb8540821794ebe221fbc36f1f67dad6d1d;hp=542c2715e36ecad7cc920725e5f2e621f394fa83;hb=e801c8052a5daa60c576d5231cb90f7ae6ed6c33;hpb=15061aceedd0a5894ea58f644bbd48b932945de0 diff --git a/skin.py b/skin.py index 542c271..a20f3eb 100755 --- a/skin.py +++ b/skin.py @@ -403,9 +403,9 @@ def lookupScreen(name, style_id): for x in skin.findall("screen"): if x.attrib.get('name', '') == name: screen_style_id = x.attrib.get('id', None) - if screen_style_id is None and name.find('Summary') > 0: + if screen_style_id is None and name.find('ummary') > 0: screen_style_id = 1 - if screen_style_id is None or screen_style_id == style_id: + if screen_style_id is None or int(screen_style_id) == style_id: return x, path return None, None