From: ecdsa Date: Sun, 7 Apr 2013 19:48:37 +0000 (+0200) Subject: fix http session init X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=35ecbff7a5530cfba7309a2fd6004520d8c9437b;p=electrum-nvc.git fix http session init --- diff --git a/lib/interface.py b/lib/interface.py index 7386b1b..a78bd71 100644 --- a/lib/interface.py +++ b/lib/interface.py @@ -191,6 +191,7 @@ class Interface(threading.Thread): def init_http(self, host, port, proxy=None, use_ssl=True): self.init_server(host, port, proxy, use_ssl) self.session_id = None + self.is_connected = True self.connection_msg = ('https' if self.use_ssl else 'http') + '://%s:%d'%( self.host, self.port ) try: self.poll()