Commit 2d8d69f9 authored by Brian Rosner's avatar Brian Rosner
Browse files

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
parent 9ee0b0d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -150,7 +150,7 @@ New (1.0)::
        model = Child
        extra = 3

    class ParentAdmin(models.ModelAdmin):
    class ParentAdmin(admin.ModelAdmin):
        model = Parent
        inlines = [ChildInline]