mirror of
https://github.com/django/django.git
synced 2024-12-29 12:36:08 +00:00
ca3d89b70f
git-svn-id: http://code.djangoproject.com/svn/django/trunk@169 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
289 B
Python
12 lines
289 B
Python
# 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)
|