qt channels_list: use repr() and not str() for exceptions

This commit is contained in:
Janus 2018-10-10 13:47:23 +02:00 committed by SomberNight
parent a8969d8822
commit d480d52c1c
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
import asyncio
from PyQt5 import QtCore, QtWidgets
from PyQt5.QtWidgets import *
@ -116,4 +117,5 @@ class ChannelsList(MyTreeWidget):
try:
self.parent.wallet.lnworker.open_channel(*args, **kwargs)
except Exception as e:
self.parent.show_error('Cannot open channel: %s' % str(e))
# don't use str(e) because str(asyncio.TimeoutError()) (and many others) is ''
self.parent.show_error('Cannot open channel: %s' % repr(e))