dr.botzo/ircbot/old-web/dr.botzo.wsgi
Brian S. Stephan e7b132348f actually i need to call this ircbot
so i don't collide with the django dr_botzo
2014-03-16 09:18:17 -05:00

12 lines
253 B
Python

import os
import sys
path = '/home/bss/Programs/dr.botzo/web'
if path not in sys.path:
sys.path.append(path)
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()