Commit 4c417cc9 authored by Claude Paroz's avatar Claude Paroz
Browse files

Fixed #18576 -- Added missing import in tutorial02

Thanks jaaruiz at yahoo.com for the report.
parent 86eb606b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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