aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-01-10 13:45:57 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-01-10 13:46:25 +0100
commitc8f7997f60312cc387fd5cd1788f064368f6131c (patch)
tree8223dd36174107e49b7d3620289f7683ad7441b3
parentd5a16c6e9d0ee1cc2dc0d65b4321842dea4b0891 (diff)
downloadenigma2-c8f7997f60312cc387fd5cd1788f064368f6131c.tar.gz
enigma2-c8f7997f60312cc387fd5cd1788f064368f6131c.zip
Screen.py: add missing dict.__init__ call2.7.0
-rw-r--r--lib/python/Screens/Screen.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/Screen.py b/lib/python/Screens/Screen.py
index 7ac7841c..f0bf773d 100644
--- a/lib/python/Screens/Screen.py
+++ b/lib/python/Screens/Screen.py
@@ -15,6 +15,7 @@ class Screen(dict, GUISkin):
global_screen = None
def __init__(self, session, parent = None):
+ dict.__init__(self)
self.skinName = self.__class__.__name__
self.session = session
self.parent = parent