tfix display of 'payment sent' message (indentation has been broken in 8f91af2) - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit ecf398c95e0b69892f714d4e6428e50c54403169 DIR parent b0f6b8578ef36559bc243fb7765a5e2e4420d44c HTML Author: ThomasV <thomasv@electrum.org> Date: Tue, 2 Aug 2016 12:03:53 +0200 fix display of 'payment sent' message (indentation has been broken in 8f91af2) Diffstat: M gui/qt/main_window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -1283,9 +1283,9 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): if status: if tx_desc is not None and tx.is_complete(): self.wallet.set_label(tx.hash(), tx_desc) - parent.show_message(_('Payment sent.') + '\n' + msg) - self.invoice_list.update() - self.do_clear() + parent.show_message(_('Payment sent.') + '\n' + msg) + self.invoice_list.update() + self.do_clear() else: parent.show_error(msg)