From c849fcc66de766c467926305fbc0f371eae20a80 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Tue, 26 Aug 2008 16:55:37 +0000 Subject: [PATCH] Fixed #8558 -- Removed a stray line in tutorial 2 left over from when it was rewritten for the new admin. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8584 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/intro/tutorial02.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index ffc95952f6..904058f73a 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -264,7 +264,6 @@ Poll object. Let's make that happen. Remove the ``register()`` call for the Choice model. Then, edit the ``Poll`` registration code to read:: - poll = models.ForeignKey(Poll, edit_inline=models.STACKED, num_in_admin=3) class ChoiceInline(admin.StackedInline): model = Choice extra = 3