diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2010-10-06 15:02:26 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-10-06 15:02:26 +0000 |
| commit | fea159282b75130b5f6cf52ec92ddfa09467f3c9 (patch) | |
| tree | 4ae1ede0ad6b7deeb8424eedc26a6919c5b9d6f7 /django/core/handlers/modpython.py | |
| parent | 57aeb542792317df13c54eab7ceac73ceeb2847d (diff) | |
Fixed #14406 -- Added a Python 2.4 compatibility to the logging interface. Thanks to Łukasz Rekucki for the report, and to Luke Plant for original patch this was based on.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13989 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/handlers/modpython.py')
| -rw-r--r-- | django/core/handlers/modpython.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/core/handlers/modpython.py b/django/core/handlers/modpython.py index 395ec65314..5afc61296f 100644 --- a/django/core/handlers/modpython.py +++ b/django/core/handlers/modpython.py @@ -1,4 +1,3 @@ -import logging import os from pprint import pformat import sys @@ -10,8 +9,9 @@ from django.core.handlers.base import BaseHandler from django.core.urlresolvers import set_script_prefix from django.utils import datastructures from django.utils.encoding import force_unicode, smart_str, iri_to_uri +from django.utils.log import getLogger -logger = logging.getLogger('django.request') +logger = getLogger('django.request') # NOTE: do *not* import settings (or any module which eventually imports |
