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:46:25 +0100 |
| commit | c8f7997f60312cc387fd5cd1788f064368f6131c (patch) | |
| tree | 8223dd36174107e49b7d3620289f7683ad7441b3 /lib | |
| parent | d5a16c6e9d0ee1cc2dc0d65b4321842dea4b0891 (diff) | |
| download | enigma2-c8f7997f60312cc387fd5cd1788f064368f6131c.tar.gz enigma2-c8f7997f60312cc387fd5cd1788f064368f6131c.zip | |
Screen.py: add missing dict.__init__ call2.7.0
Diffstat (limited to 'lib')
| -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 |
