fix typo
[enigma2.git] / lib / python / Screens / Screen.py
index 0727f78ba034ae3ef2a3fdd79cd6e681841e74af..78a88ad841c6c54815ad1d794cced8f62885c0da 100644 (file)
@@ -5,7 +5,8 @@ from Components.Sources.Source import Source
 import sys
 
 class Screen(dict, HTMLSkin, GUISkin):
-       """ bla """
+
+       ALLOW_SUSPEND = False
 
        def __init__(self, session):
                self.skinName = self.__class__.__name__
@@ -22,6 +23,8 @@ class Screen(dict, HTMLSkin, GUISkin):
                self.execing = False
                self.shown = False
                
+               self.renderer = [ ]
+               
                # in order to support screens *without* a help,
                # we need the list in every screen. how ironic.
                self.helpList = [ ]