URI: 
       tcleanup - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 6e25fed1006d518fdc0d85e62914e1d40d60e6f9
   DIR parent 233f65651b5a481c1b097ad959a650cc32214e94
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Tue, 20 Mar 2012 08:36:10 +0300
       
       cleanup
       
       Diffstat:
         M server/server.py                    |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/server/server.py b/server/server.py
       t@@ -654,7 +654,7 @@ def irc_thread():
        def get_peers_json(_,__):
            return peer_list.values()
        
       -def http_server_thread(store):
       +def http_server_thread():
            # see http://code.google.com/p/jsonrpclib/
            from SocketServer import ThreadingMixIn
            from StratumJSONRPCServer import StratumJSONRPCServer
       t@@ -713,7 +713,7 @@ if __name__ == '__main__':
            # supported protocols
            thread.start_new_thread(native_server_thread, ())
            thread.start_new_thread(tcp_server_thread, ())
       -    thread.start_new_thread(http_server_thread, (store,))
       +    thread.start_new_thread(http_server_thread, ())
            thread.start_new_thread(clean_session_thread, ())
        
            if (config.get('server','irc') == 'yes' ):