diff options
| author | Karen Tracey <kmtracey@gmail.com> | 2010-04-14 21:23:43 +0000 |
|---|---|---|
| committer | Karen Tracey <kmtracey@gmail.com> | 2010-04-14 21:23:43 +0000 |
| commit | 1cec641669d8b4dc507190371e263be914cbcca8 (patch) | |
| tree | 22143a5143175118b25f0b4988f78ae58445274a /tests/regressiontests/admin_scripts | |
| parent | 48dd5f13a351048d40803cbb95e60ed775d980cd (diff) | |
Fixed Python 2.4 incompatibility introduced in r12972.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12974 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/admin_scripts')
| -rw-r--r-- | tests/regressiontests/admin_scripts/complex_app/models/bar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/admin_scripts/complex_app/models/bar.py b/tests/regressiontests/admin_scripts/complex_app/models/bar.py index 1da16f8f65..a5d8853fe4 100644 --- a/tests/regressiontests/admin_scripts/complex_app/models/bar.py +++ b/tests/regressiontests/admin_scripts/complex_app/models/bar.py @@ -1,6 +1,6 @@ from django.db import models -from ..admin import foo +from admin_scripts.complex_app.admin import foo class Bar(models.Model): name = models.CharField(max_length=5) class Meta: |
