aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Components/config.py')
-rw-r--r--lib/python/Components/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index 75035a78..343632db 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -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 = [""])