This commit is contained in:
Luke Rogers 2012-07-01 14:14:24 +12:00
parent 7ec200105a
commit 13a87091c9

View file

@ -99,7 +99,11 @@ class Handler(object):
db_conns[input.conn] = db
input.db = db
run(self.func, input)
try:
run(self.func, input)
except:
import traceback
traceback.print_exc()
def stop(self):
self.input_queue.put(StopIteration)