summaryrefslogtreecommitdiff
path: root/django/db/models/__init__.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-07-22 03:24:09 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-07-22 03:24:09 +0000
commit29f0e8182f49e2927ae46e748d09d0672d4fc127 (patch)
tree81eab07cc98097ffd2e63514ace56b7dafbc76fd /django/db/models/__init__.py
parentcf2a05952eb35f1532e0127e8e871c9c153afac7 (diff)
downloaddjango-29f0e8182f49e2927ae46e748d09d0672d4fc127.tar.gz
Fixed #7847 -- Removed a whole bunch of unused imports from throughout the codebase. Thanks, julien
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8046 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/models/__init__.py')
-rw-r--r--django/db/models/__init__.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/models/__init__.py b/django/db/models/__init__.py
index bd6cc3542d..18c47e86f3 100644
--- a/django/db/models/__init__.py
+++ b/django/db/models/__init__.py
@@ -10,8 +10,6 @@ from django.db.models.fields import *
from django.db.models.fields.subclassing import SubfieldBase
from django.db.models.fields.related import ForeignKey, OneToOneField, ManyToManyField, ManyToOneRel, ManyToManyRel, OneToOneRel, TABULAR, STACKED
from django.db.models import signals
-from django.utils.functional import curry
-from django.utils.text import capfirst
# Admin stages.
ADD, CHANGE, BOTH = 1, 2, 3