﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
12623	apostrophes in the python interactive shell documentation	zakir2k	nobody	"Hi, 

I am a total beginner to Django and web development in general, so whilst using the very well written tutorial 'Writing your first Django app, part 1' -> I came stuck at the second part of using the interactive shell to explore the database ID.  Within the Python Shell, the documentation says to:

# Give the Poll a couple of Choices. The create call constructs a new
# choice object, does the INSERT statement, adds the choice to the set
# of available choices and returns the new Choice object.
>>> p = Poll.objects.get(pk=1)
>>> p.choice_set.create(choice='Not much', votes=0)
<Choice: Not much>
>>> p.choice_set.create(choice='The sky', votes=0)
<Choice: The sky>
>>> c = p.choice_set.create(choice='Just hacking again', votes=0)

However I became stuck for quite some time, because instead of having Not Much, The Sky etc. in quotation marks (""Not Much"" etc.)  as was done earlier in the documentation for creating the question ""What's Up?"" in the shell, The documentation changes it to apostrophes ('Not Much' etc.).

This didn't work in the shell, and as a complete Novice, following the doc letter for letter, I was confused for quite some time.

Thanks.

Regards,

Zak"		closed	Documentation	1.1		invalid			Unreviewed	0	0	0	0	0	0
