summaryrefslogtreecommitdiff
path: root/tests/regressiontests/multiple_database/models.py
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-10-13 21:34:56 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-10-13 21:34:56 +0000
commit8c0eefd066aa0e5bfe8c1006d055be8e2ad69a2b (patch)
treebded379649862a6b9c28553bc5130da524aac209 /tests/regressiontests/multiple_database/models.py
parentf830166167833cfb7c990764f72373a9f4494259 (diff)
Convert the remainder of the relative imports in the tests to be absolute imports.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/multiple_database/models.py')
-rw-r--r--tests/regressiontests/multiple_database/models.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/regressiontests/multiple_database/models.py b/tests/regressiontests/multiple_database/models.py
index 8146c57ccb..7d655fe3d6 100644
--- a/tests/regressiontests/multiple_database/models.py
+++ b/tests/regressiontests/multiple_database/models.py
@@ -1,8 +1,11 @@
+from __future__ import absolute_import
+
from django.contrib.auth.models import User
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
from django.db import models
+
class Review(models.Model):
source = models.CharField(max_length=100)
content_type = models.ForeignKey(ContentType)