Fixed #18576 -- Added missing import in tutorial02

Thanks jaaruiz at yahoo.com for the report.
This commit is contained in:
Claude Paroz 2012-07-06 13:57:14 +02:00
parent 86eb606b88
commit 4c417cc9eb
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,7 @@ Remove the ``register()`` call for the ``Choice`` model. Then, edit the ``Poll``
registration code to read::
from django.contrib import admin
from polls.models import Poll
from polls.models import Choice, Poll
class ChoiceInline(admin.StackedInline):
model = Choice