electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit ea1af3d536e39c3e81864f4dd184fef7c6c6a797
parent 883f9be7d15cf1aba16895a0848f0d7af99f2ff3
Author: ThomasV <thomasv@gitorious>
Date:   Tue,  3 Mar 2015 10:55:11 +0100

fix password bug in wallet upgrade

Diffstat:
Mgui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -245,7 +245,7 @@ class ElectrumWindow(QMainWindow): def update_wallet_format(self): # convert old-format imported keys if self.wallet.imported_keys: - password = self.password_dialog(_("Please enter your password in order to update imported keys")) + password = self.password_dialog(_("Please enter your password in order to update imported keys")) if self.wallet.use_encryption else None try: self.wallet.convert_imported_keys(password) except: