From 681c113336426914342cf68fb03e7cd399c29c9a Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Wed, 11 Oct 2006 15:16:56 +0000 Subject: improve parental control retry count --- lib/python/Components/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python/Components/config.py') diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index e9c8b1c1..38a23146 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -428,7 +428,7 @@ class ConfigClock(ConfigSequence): ConfigSequence.__init__(self, seperator = ":", limits = [(0,23),(0,59)], default = [t.tm_hour, t.tm_min]) class ConfigInteger(ConfigSequence): - def __init__(self, default, limits): + def __init__(self, default, limits = (0, 10000000000)): ConfigSequence.__init__(self, seperator = ":", limits = [limits], default = default) # you need to override this to do input validation -- cgit v1.2.3