Fixed #9050 -- Fixed a typo in the 1.0 porting guide in the admin section. Thanks ahebert.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@9017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Brian Rosner 2008-09-12 16:56:09 +00:00
parent 9ee0b0d384
commit 2d8d69f9ae
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ New (1.0)::
model = Child
extra = 3
class ParentAdmin(models.ModelAdmin):
class ParentAdmin(admin.ModelAdmin):
model = Parent
inlines = [ChildInline]