Screen.py: add missing dict.__init__ call
[vuplus_dvbapp] / lib / python / Screens / Screen.py
index 2ba7342..f0bf773 100644 (file)
@@ -9,11 +9,13 @@ from Components.GUIComponent import GUIComponent
 
 class Screen(dict, GUISkin):
 
+       False, SUSPEND_STOPS, SUSPEND_PAUSES = range(3)
        ALLOW_SUSPEND = False
 
        global_screen = None
 
        def __init__(self, session, parent = None):
+               dict.__init__(self)
                self.skinName = self.__class__.__name__
                self.session = session
                self.parent = parent