change ConfigDummy to ConfigNothing
[enigma2.git] / lib / python / Components / config.py
index 75035a78b3f414d3ab746f639b5ea5d274b32adb..343632db225f4ee5ca4be3a07530107e2c41bba6 100644 (file)
@@ -26,6 +26,7 @@ import copy
 #
 class ConfigElement(object):
        def __init__(self):
+
                object.__init__(self)
                self.saved_value = None
                self.save_disabled = False
@@ -571,7 +572,7 @@ class ConfigSatlist(ConfigSelection):
        orbital_position = property(getOrbitalPosition)
 
 # nothing.
-class ConfigDummy(ConfigSelection):
+class ConfigNothing(ConfigSelection):
        def __init__(self):
                ConfigSelection.__init__(self, choices = [""])