Commit 35f93dfb authored by Denis Bilenko's avatar Denis Bilenko

webchat: move monkey patching into application.py

parent 1e59ef81
#!/usr/bin/python
from gevent import monkey; monkey.patch_all()
import os
import traceback
from django.core.handlers.wsgi import WSGIHandler
......
#!/usr/bin/python
from gevent import monkey; monkey.patch_all()
from gevent.wsgi import WSGIServer
from application import application
print 'Serving on 8000...'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment