URI: 
       tfix connection_msg - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit f1c9aa66034365ee1c91ea993ecccb08c58c350e
   DIR parent c5f5e92d171c55f1ac33a26f0c99f0fb4c10c6cb
  HTML Author: thomasv <thomasv@gitorious>
       Date:   Fri, 19 Oct 2012 10:30:51 +0200
       
       fix connection_msg
       
       Diffstat:
         M lib/interface.py                    |       8 ++------
       
       1 file changed, 2 insertions(+), 6 deletions(-)
       ---
   DIR diff --git a/lib/interface.py b/lib/interface.py
       t@@ -130,7 +130,7 @@ class HttpStratumInterface(InterfaceAncestor):
            def __init__(self, host, port, proxy=None, use_ssl=True):
                InterfaceAncestor.__init__(self, host, port, proxy, use_ssl)
                self.session_id = None
       -        self.connection_msg = "http://%s:%d"%(self.host,self.port)
       +        self.connection_msg = ('https' if self.use_ssl else 'http') + '://%s:%d'%( self.host, self.port )
        
            def get_history(self, address):
                self.send([('blockchain.address.get_history', [address] )])
       t@@ -185,16 +185,12 @@ class HttpStratumInterface(InterfaceAncestor):
                    # poll with GET
                    data_json = None 
        
       -        if self.use_ssl:
       -            host = 'https://%s:%d'%( self.host, self.port )
       -        else:
       -            host = 'http://%s:%d'%( self.host, self.port )
                    
                headers = {'content-type': 'application/json'}
                if self.session_id:
                    headers['cookie'] = 'SESSION=%s'%self.session_id
        
       -        req = urllib2.Request(host, data_json, headers)
       +        req = urllib2.Request(self.connection_msg, data_json, headers)
                response_stream = urllib2.urlopen(req)
        
                for index, cookie in enumerate(cj):