Make time.sleep() non-blocking

This commit is contained in:
Josh Kearney 2010-11-22 16:28:28 -06:00
parent a8497abaf2
commit deac609ceb
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ from xml.dom import minidom
import eventlet
import eventlet.wsgi
eventlet.patcher.monkey_patch(all=False, socket=True)
eventlet.patcher.monkey_patch(all=False, socket=True, time=True)
import routes
import routes.middleware
import webob