diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-13 18:04:12 +0000 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2011-10-13 18:04:12 +0000 |
| commit | d5a45d79fe03cad93ab5761860e9bb6fc1db4c86 (patch) | |
| tree | 0fd5b87753749027117c088543e1ff8fdc7b945b /tests/modeltests/force_insert_update/models.py | |
| parent | 99512d3544cd792e14927c24a8f92389c4006122 (diff) | |
Convert all modeltests to use absolute imports, rather than relative ones.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16975 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/modeltests/force_insert_update/models.py')
| -rw-r--r-- | tests/modeltests/force_insert_update/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/modeltests/force_insert_update/models.py b/tests/modeltests/force_insert_update/models.py index e617aa228a..db4c5d29f3 100644 --- a/tests/modeltests/force_insert_update/models.py +++ b/tests/modeltests/force_insert_update/models.py @@ -4,6 +4,7 @@ automatic behaviour). """ from django.db import models + class Counter(models.Model): name = models.CharField(max_length = 10) value = models.IntegerField() |
