commit 58f11680047ee513ed542b0942588895bea88c0e
parent 90cfc6af90856b0e62f0638141b2f64197eace90
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 30 Jul 2016 09:54:22 +0200
minor fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gui/kivy/uix/dialogs/tx_dialog.py b/gui/kivy/uix/dialogs/tx_dialog.py
@@ -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)