From 392335487b7a347b191a4b9a4553f364acb58e83 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Fri, 4 Sep 2015 10:27:28 +0900 Subject: [PATCH] Add plugins variable to console --- gui/qt/main_window.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index e5a15ef86..9dc893a3b 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1754,7 +1754,10 @@ class ElectrumWindow(QMainWindow): console.history = self.config.get("console-history",[]) console.history_index = len(console.history) - console.updateNamespace({'wallet' : self.wallet, 'network' : self.network, 'gui':self}) + console.updateNamespace({'wallet' : self.wallet, + 'network' : self.network, + 'plugins' : self.gui_object.plugins, + 'gui': self}) console.updateNamespace({'util' : util, 'bitcoin':bitcoin}) c = commands.Commands(self.config, self.wallet, self.network, lambda: self.console.set_json(True))