URI: 
       tdiagnostic_name: convert to str - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 44d8c8f995f745546edfcc51b08c0c9948383a9d
   DIR parent 8f779f504f76a48899722203d045c1e3ac850d11
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sat, 14 Jul 2018 18:36:31 +0200
       
       diagnostic_name: convert to str
       
       Diffstat:
         M electrum/lnbase.py                  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/lnbase.py b/electrum/lnbase.py
       t@@ -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: