Fixed import statement in admin_views test to work with Python 2.3.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10789 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
a00be66311
commit
56f3ed7f54
|
@ -13,11 +13,10 @@ from django.contrib.admin.helpers import ACTION_CHECKBOX_NAME
|
||||||
from django.utils.html import escape
|
from django.utils.html import escape
|
||||||
|
|
||||||
# local test models
|
# local test models
|
||||||
from models import (Article, BarAccount, CustomArticle, EmptyModel,
|
from models import Article, BarAccount, CustomArticle, EmptyModel, \
|
||||||
ExternalSubscriber, FooAccount, Gallery,
|
ExternalSubscriber, FooAccount, Gallery, ModelWithStringPrimaryKey, \
|
||||||
ModelWithStringPrimaryKey, Person, Persona, Picture,
|
Person, Persona, Picture, Podcast, Section, Subscriber, Vodcast, \
|
||||||
Podcast, Section, Subscriber, Vodcast, Language,
|
Language, Collector, Widget, Grommet, DooHickey, FancyDoodad, Whatsit
|
||||||
Collector, Widget, Grommet, DooHickey, FancyDoodad, Whatsit)
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
set
|
set
|
||||||
|
|
Loading…
Reference in New Issue