commit e766df1d3303236116722349e350c530f545a767
parent a3af71960cd381c562ab8d1370ae9f714f9be0c3
Author: ThomasV <thomasv@gitorious>
Date: Wed, 5 Dec 2012 08:12:29 +0100
retry when passwords do not match
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/gui_qt.py b/lib/gui_qt.py
@@ -1424,7 +1424,7 @@ class ElectrumWindow(QMainWindow):
if new_password != new_password2:
QMessageBox.warning(parent, _('Error'), _('Passwords do not match'), _('OK'))
- return
+ return ElectrumWindow.change_password_dialog(wallet, parent) # Retry
wallet.update_password(seed, password, new_password)