From a8ad85de688bbf2c22644f343e1ddb881edf52da Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 1 Oct 2013 14:37:46 +0200 Subject: [PATCH] minor fix --- gui/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 index f7545e77..b0a191a9 100644 --- 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)