tbefore_send: fix logic - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 1995c56b7f1b11045eead75e2436b8615332496d DIR parent b1eb6ebc911f9bbe6d1cd1f06e8dc8804f227bb4 HTML Author: ThomasV <thomasv@gitorious> Date: Fri, 14 Nov 2014 11:26:42 +0100 before_send: fix logic Diffstat: M gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -1082,7 +1082,7 @@ class ElectrumWindow(QMainWindow): def do_send(self): - if not run_hook('before_send'): + if run_hook('before_send'): return r = self.read_send_tab() if not r: