aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-10-07 13:58:19 +0000
committerAndreas Frisch <andreas.frisch@multimedia-labs.de>2008-10-07 13:58:19 +0000
commite06775bd7fd937db1148ecea6e162ad76821700e (patch)
tree6573ca1df6891ee80edf588b44cf0f5c3dc090c3 /lib/python/Components/config.py
parent4f1fab7b13be9d8d3fb013c14378264968502b2a (diff)
downloadenigma2-e06775bd7fd937db1148ecea6e162ad76821700e.tar.gz
enigma2-e06775bd7fd937db1148ecea6e162ad76821700e.zip
allow default text in ConfigPassword
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 3b8ad01c..a70f0d47 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -764,7 +764,7 @@ class ConfigText(ConfigElement, NumericalTextInput):
class ConfigPassword(ConfigText):
def __init__(self, default = "", fixed_size = False, visible_width = False, censor = "*"):
- ConfigText.__init__(self, default = "", fixed_size = fixed_size, visible_width = visible_width)
+ ConfigText.__init__(self, default = default, fixed_size = fixed_size, visible_width = visible_width)
self.censor_char = censor
self.hidden = True