diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-16 02:06:09 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-08-16 02:06:09 +0000 |
| commit | d11fb525d67a2f36688bb12590e1054987290c53 (patch) | |
| tree | e0ffa5cf8d7dd92324aa2ce0b13ac50407838c3f /lib/python | |
| parent | 6535cfece8f6f0928298461288b1819f6b06a3b3 (diff) | |
| download | enigma2-d11fb525d67a2f36688bb12590e1054987290c53.tar.gz enigma2-d11fb525d67a2f36688bb12590e1054987290c53.zip | |
removed c/Confif confusion
add ConfigSubsection (more readable code)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Components/config.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index eacb5fe1..c7421842 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -27,12 +27,18 @@ def configEntry(obj): else: return ("invalid", "") -class config: +class Config: def __init__(self): pass def Slider(self): # ok??? pass +config = Config(); + +class ConfigSubsection: + def __init__(self): + pass + class configElement: def __init__(self, configPath, control, defaultValue): self.configPath = configPath |
