summaryrefslogtreecommitdiffstats
path: root/reports/reports.wsgi
blob: c2a2be1ce0706689f3a8dd645351278b87077c83 (plain)
1
2
3
4
5
6
7
8
9
10
import os
import Bcfg2.Options
import Bcfg2.DBSettings

Bcfg2.Options.get_parser().parse()

import django.core.handlers.wsgi

def application(environ, start_response):
  return django.core.handlers.wsgi.WSGIHandler()(environ, start_response)