From 287de8ce0c2238666fc534a0a58cba7e042f8df3 Mon Sep 17 00:00:00 2001 From: ghost Date: Mon, 16 Feb 2009 18:08:39 +0100 Subject: [PATCH] fix ConfigNone this fixes the endless bootloop with dm800 --- lib/python/Components/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2