some cleanups
[enigma2.git] / lib / python / Screens / Screen.py
index 060270b1a63b1fe27b810d7f8b8c55d9dcd2cd41..b581e62baca7be4a7c026d28941b09f64d7263ef 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__
@@ -113,3 +114,6 @@ class Screen(dict, HTMLSkin, GUISkin):
                for val in self.values() + self.renderer:
                        if isinstance(val, GUIComponent) or isinstance(val, Source):
                                val.onHide()
+
+       def __repr__(self):
+               return str(type(self))