summaryrefslogtreecommitdiff
path: root/django/core/handlers/modpython.py
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2011-04-02 08:37:53 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2011-04-02 08:37:53 +0000
commitaf00f29ecb7647e455d3207a4af1c587d7d53e2f (patch)
treed2e86de3757d5113b406f4c23b561d390243de2c /django/core/handlers/modpython.py
parent576606a6f230bc50a82433eb60661737742c2a59 (diff)
Advanced deprecations in core.mail, core.commands, core.context_processors and core.handlers.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15978 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/handlers/modpython.py')
-rw-r--r--django/core/handlers/modpython.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py
index 7b25f0e11e..e5c7467072 100644
--- a/django/core/handlers/modpython.py
+++ b/django/core/handlers/modpython.py
@@ -160,7 +160,7 @@ class ModPythonHandler(BaseHandler):
def __call__(self, req):
warn(('The mod_python handler is deprecated; use a WSGI or FastCGI server instead.'),
- PendingDeprecationWarning)
+ DeprecationWarning)
# mod_python fakes the environ, and thus doesn't process SetEnv. This fixes that
os.environ.update(req.subprocess_env)