diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-10-11 15:16:56 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-10-11 15:16:56 +0000 |
| commit | 681c113336426914342cf68fb03e7cd399c29c9a (patch) | |
| tree | b0595ec9c407f8f28694c152756c516d83db3edb /lib/python/Components/config.py | |
| parent | 88078e7ac2ee289a0dfc321d71c7494657c4457c (diff) | |
| download | enigma2-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.py | 2 |
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 |
