tminor fix - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 58f11680047ee513ed542b0942588895bea88c0e DIR parent 90cfc6af90856b0e62f0638141b2f64197eace90 HTML Author: ThomasV <thomasv@electrum.org> Date: Sat, 30 Jul 2016 09:54:22 +0200 minor fix Diffstat: M gui/kivy/uix/dialogs/tx_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/gui/kivy/uix/dialogs/tx_dialog.py b/gui/kivy/uix/dialogs/tx_dialog.py t@@ -145,7 +145,7 @@ class TxDialog(Factory.Popup): try: new_tx = self.wallet.bump_fee(self.tx, delta) except BaseException as e: - self.app.show_error(e) + self.app.show_error(str(e)) return if is_final: new_tx.set_sequence(0xffffffff)