Skip to content

Commit

Permalink
Fixed #11628 -- Corrected the tutorial, removing instructions to upda…
Browse files Browse the repository at this point in the history
…te the year where that isn't required. Thanks to tommstein for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11538 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Sep 12, 2009
1 parent b8b9411 commit 77c64c6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/intro/tutorial01.txt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -643,8 +643,7 @@ Save these changes and start a new Python interactive shell by running
>>> Poll.objects.filter(question__startswith='What') >>> Poll.objects.filter(question__startswith='What')
[<Poll: What's up?>] [<Poll: What's up?>]


# Get the poll whose year is 2007. Of course, if you're going through this # Get the poll whose year is 2007.
# tutorial in another year, change as appropriate.
>>> Poll.objects.get(pub_date__year=2007) >>> Poll.objects.get(pub_date__year=2007)
<Poll: What's up?> <Poll: What's up?>


Expand Down

0 comments on commit 77c64c6

Please sign in to comment.