diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-04-12 13:00:29 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-04-12 13:00:29 +0000 |
| commit | 6d953207aeb581cb596bd11144f2f145a886f270 (patch) | |
| tree | a4155b14a8f2b1b3ecd97485856200d8fa321571 /django | |
| parent | 597fc781cdedff1fe43b0996fd4b4a3dd1336279 (diff) | |
magic-removal: Fixed #1623 -- Restored missing import in db/models/init.py
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2685 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
| -rw-r--r-- | django/db/models/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/__init__.py b/django/db/models/__init__.py index 043e9ada53..d708fa60bc 100644 --- a/django/db/models/__init__.py +++ b/django/db/models/__init__.py @@ -7,7 +7,7 @@ from django.db.models.query import Q from django.db.models.manager import Manager from django.db.models.base import Model, AdminOptions from django.db.models.fields import * -from django.db.models.fields.related import ForeignKey, OneToOneField, ManyToManyField, ManyToOneRel, ManyToManyRel, OneToOneRel +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 |
