From 14dcf8840972e6b68a6111153e31fb2cdfeca66e Mon Sep 17 00:00:00 2001 From: Maran Date: Tue, 12 Mar 2013 21:38:06 +0100 Subject: [PATCH] Tweaks for new plugin giving self --- gui/gui_classic.py | 4 ++-- plugins/labels.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gui/gui_classic.py b/gui/gui_classic.py index 63aa69f95..08602fa31 100644 --- a/gui/gui_classic.py +++ b/gui/gui_classic.py @@ -2051,7 +2051,7 @@ class ElectrumWindow(QMainWindow): traceback.print_exc(file=sys.stdout) grid_plugins.setRowStretch(i+1,1) - self.run_hook('create_settings_tab', (self,tabs,)) + self.run_hook('create_settings_tab', (tabs,)) vbox.addLayout(ok_cancel_buttons(d)) d.setLayout(vbox) @@ -2115,7 +2115,7 @@ class ElectrumWindow(QMainWindow): self.config.set_key('currency', cur_request, True) self.update_wallet() - self.run_hook('close_settings_dialog', (self,)) + self.run_hook('close_settings_dialog', ()) if need_restart: QMessageBox.warning(self, _('Success'), _('Please restart Electrum to activate the new GUI settings'), _('OK')) diff --git a/plugins/labels.py b/plugins/labels.py index 9c48efae1..62a914417 100644 --- a/plugins/labels.py +++ b/plugins/labels.py @@ -47,7 +47,7 @@ def wallet_id(): global config return hashlib.sha256(str(config.get("master_public_key"))).digest().encode('hex') -def set_label(item,label, changed): +def set_label(gui, item,label, changed): if not changed: return