blob: 039406722b503c56deb44fc038f6bf6c342425ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# This module is DEPRECATED!
#
# You should no longer be pointing your mod_python configuration
# at "django.core.handler".
#
# Use "django.core.handlers.modpython" instead.
from django.core.handlers.modpython import ModPythonHandler
def handler(req):
return ModPythonHandler()(req)
|