aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-10-11 15:16:56 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-10-11 15:16:56 +0000
commit681c113336426914342cf68fb03e7cd399c29c9a (patch)
treeb0595ec9c407f8f28694c152756c516d83db3edb /lib/python/Components/config.py
parent88078e7ac2ee289a0dfc321d71c7494657c4457c (diff)
downloadenigma2-681c113336426914342cf68fb03e7cd399c29c9a.tar.gz
enigma2-681c113336426914342cf68fb03e7cd399c29c9a.zip
improve parental control retry count
Diffstat (limited to 'lib/python/Components/config.py')
-rw-r--r--lib/python/Components/config.py2
1 files changed, 1 insertions, 1 deletions
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