diff options
| author | Claude Paroz <claude@2xlibre.net> | 2012-07-06 13:57:14 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2012-07-06 13:58:49 +0200 |
| commit | 4c417cc9ebd65595128b81cdddc9ea8293cbcbbe (patch) | |
| tree | 10131724ae54fa1970c879b06dca027c1a7603a5 /docs/intro/tutorial02.txt | |
| parent | 86eb606b88b3979de8074c3a049535150a0cc8a5 (diff) | |
Fixed #18576 -- Added missing import in tutorial02
Thanks jaaruiz at yahoo.com for the report.
Diffstat (limited to 'docs/intro/tutorial02.txt')
| -rw-r--r-- | docs/intro/tutorial02.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 16682c67c3..84da36be86 100644 --- a/docs/intro/tutorial02.txt +++ b/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 |
