electrum

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

commit a8ad85de688bbf2c22644f343e1ddb881edf52da
parent b30bac13e5811bccc9beab97e6184e34812eebb3
Author: ThomasV <thomasv@gitorious>
Date:   Tue,  1 Oct 2013 14:37:46 +0200

minor fix

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 @@ -1488,7 +1488,7 @@ class ElectrumWindow(QMainWindow): @protected def show_seed_dialog(self, password): if not self.wallet.seed: - QMessageBox.information(parent, _('Message'), _('No seed'), _('OK')) + QMessageBox.information(self, _('Message'), _('No seed'), _('OK')) return try: seed = self.wallet.decode_seed(password)