diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-10 13:45:57 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-10 13:45:57 +0100 |
| commit | 2b8451631894b48330eee673493c1dd84e87916c (patch) | |
| tree | 7cf68c4780d539e018e7c0981a621c700b875ae3 /lib/python | |
| parent | fa33ac1ea2677108bb2bb926fcc8153fe03ffccf (diff) | |
| download | enigma2-2b8451631894b48330eee673493c1dd84e87916c.tar.gz enigma2-2b8451631894b48330eee673493c1dd84e87916c.zip | |
Screen.py: add missing dict.__init__ call
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Screen.py | 1 |
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 |
