changeset 390:76583fab7ea0

browser_side: fix XMLUI password box initialisation
author souliane <souliane@mailoo.org>
date Mon, 03 Mar 2014 15:44:13 +0100
parents 2d782349b88a
children c86d7a8d2c1e
files browser_side/xmlui.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/browser_side/xmlui.py	Tue Feb 25 17:50:47 2014 +0100
+++ b/browser_side/xmlui.py	Mon Mar 03 15:44:13 2014 +0100
@@ -82,7 +82,7 @@
 class PasswordWidget(xmlui.PasswordWidget, PasswordTextBox):
 
     def __init__(self, parent, value):
-        TextBox.__init__(self)
+        PasswordTextBox.__init__(self)
         self.setText(value)
 
     def _xmluiGetValue(self):