summaryrefslogtreecommitdiff
path: root/django/http
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-03-17 09:11:24 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-03-17 09:11:24 +0000
commit8d71734f1573fb9ea657ac16c2b31fdb43d78ac6 (patch)
treeab1aff513b64558abc386a3d3282d1171c236a1c /django/http
parente57bedee78de9a0893005a08299e5a4396ebfbaa (diff)
Fixed #17923 -- Added missing import in the MySQL and Oracle backends. Thanks aldaran for the report. Also removed two duplicate imports.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17758 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/http')
-rw-r--r--django/http/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/http/__init__.py b/django/http/__init__.py
index 60a92d5f1c..0c746fe74f 100644
--- a/django/http/__init__.py
+++ b/django/http/__init__.py
@@ -110,7 +110,6 @@ else:
class CompatCookie(SimpleCookie):
def __init__(self, *args, **kwargs):
super(CompatCookie, self).__init__(*args, **kwargs)
- import warnings
warnings.warn("CompatCookie is deprecated. Use django.http.SimpleCookie instead.", DeprecationWarning)
from django.conf import settings