diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-16 18:08:39 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-16 18:08:39 +0100 |
| commit | 287de8ce0c2238666fc534a0a58cba7e042f8df3 (patch) | |
| tree | db3a868332f70e0f3c152c31c3fde02f8f2bc9ac /lib/python | |
| parent | 50e234c05779c9da64c2d825086988706210bbb1 (diff) | |
| download | enigma2-287de8ce0c2238666fc534a0a58cba7e042f8df3.tar.gz enigma2-287de8ce0c2238666fc534a0a58cba7e042f8df3.zip | |
fix ConfigNone
this fixes the endless bootloop with dm800
Diffstat (limited to 'lib/python')
| -rwxr-xr-x | lib/python/Components/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index a813d3ca..a6d34152 100755 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -1385,7 +1385,7 @@ class ConfigLocations(ConfigElement): # nothing. class ConfigNothing(ConfigSelection): def __init__(self): - ConfigSelection.__init__(self, choices = [""]) + ConfigSelection.__init__(self, choices = [("","")]) # until here, 'saved_value' always had to be a *string*. # now, in ConfigSubsection, and only there, saved_value |
