Browse Source

Fixed #18576 -- Added missing import in tutorial02

Thanks jaaruiz at yahoo.com for the report.
Claude Paroz 12 years ago
parent
commit
4c417cc9eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/intro/tutorial02.txt

+ 1 - 1
docs/intro/tutorial02.txt

@@ -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