diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-18 00:47:49 +0000 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-18 00:47:49 +0000 |
| commit | 396fcaaef92b6e5e56175b883c2cf6fcbda7ae97 (patch) | |
| tree | b6c03f40f6503c1c66637aedd69e9568103a18e9 /django/db/models/sql | |
| parent | 66210cbc702af9ff5d6b08c87d09b10bd84fc0dd (diff) | |
Remove all relative imports. We have always been at war with relative imports.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/models/sql')
| -rw-r--r-- | django/db/models/sql/__init__.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/django/db/models/sql/__init__.py b/django/db/models/sql/__init__.py index c07f2b7b23..df5b74e326 100644 --- a/django/db/models/sql/__init__.py +++ b/django/db/models/sql/__init__.py @@ -1,7 +1,9 @@ -from query import * -from subqueries import * +from __future__ import absolute_import + from django.db.models.sql.datastructures import EmptyResultSet +from django.db.models.sql.subqueries import * +from django.db.models.sql.query import * from django.db.models.sql.where import AND, OR -__all__ = ['Query', 'AND', 'OR', 'EmptyResultSet'] +__all__ = ['Query', 'AND', 'OR', 'EmptyResultSet'] |
