tmissing whitespace in transaction_dialog.py - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit d466ef4b73606ab8f57f16b0e0f91da015026da7 DIR parent 4b4ad22e905b8596195336cde0ac50be0d737c85 HTML Author: SomberNight <somber.night@protonmail.com> Date: Tue, 6 Feb 2018 03:28:46 +0100 missing whitespace in transaction_dialog.py Diffstat: M gui/qt/transaction_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/qt/transaction_dialog.py b/gui/qt/transaction_dialog.py t@@ -222,7 +222,7 @@ class TxDialog(QDialog, MessageBoxMixin): self.date_label.show() elif exp_n: text = '%.2f MB'%(exp_n/1000000) - self.date_label.setText(_('Position in mempool') + ': ' + text + _('from tip')) + self.date_label.setText(_('Position in mempool') + ': ' + text + ' ' + _('from tip')) self.date_label.show() else: self.date_label.hide()