version 0.40a

This commit is contained in:
ThomasV 2012-02-19 23:05:04 +03:00
parent 4fa237315e
commit 73c8905c76
2 changed files with 6 additions and 2 deletions

View File

@ -1,2 +1,2 @@
ELECTRUM_VERSION = "0.40"
ELECTRUM_VERSION = "0.40a"
SEED_VERSION = 4 # bump this everytime the seed generation is modified

View File

@ -457,7 +457,11 @@ def listen_thread(store):
s.listen(1)
while not stopping:
conn, addr = s.accept()
thread.start_new_thread(client_thread, (addr, conn,))
try:
thread.start_new_thread(client_thread, (addr, conn,))
except:
# can't start new thread if there is no memory..
traceback.print_exc(file=sys.stdout)