commit 44d8c8f995f745546edfcc51b08c0c9948383a9d
parent 8f779f504f76a48899722203d045c1e3ac850d11
Author: ThomasV <thomasv@electrum.org>
Date: Sat, 14 Jul 2018 18:36:31 +0200
diagnostic_name: convert to str
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/lnbase.py b/electrum/lnbase.py
@@ -310,7 +310,7 @@ class Peer(PrintError):
self.attempted_route = {}
def diagnostic_name(self):
- return 'lnbase:' + self.host
+ return 'lnbase:' + str(self.host)
def ping_if_required(self):
if time.time() - self.ping_time > 120: