Commit 62dfe54d authored by Alex Gaynor's avatar Alex Gaynor
Browse files

[1.2.X] Fixed a PendingDeprecationWarning coming from django.core.cache in...

[1.2.X] Fixed a PendingDeprecationWarning coming from django.core.cache in Python 2.6.  Backport of [14090].

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14091 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 50ce4573
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -15,7 +15,11 @@ cache class.
See docs/cache.txt for information on the public API.
"""

try:
    from urlparse import parse_qsl
except ImportError:
    from cgi import parse_qsl

from django.conf import settings
from django.core import signals
from django.core.cache.backends.base import InvalidCacheBackendError, CacheKeyWarning