﻿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
14561	Missing step in tutorial	leftcase	elbarto	"In docs.djangoproject.com/en/1.2/intro/tutorial01/

This step could be seen as being confusing:

''Wait a minute. <Poll: Poll object> is, utterly, an unhelpful representation of this object. Let's fix that by editing the polls model (in the polls/models.py file) and adding a __unicode__() method to both Poll and Choice:''

If you try to do this step by step you will find that editing the models.py file as suggested and retrying:

{{{
Poll.objects.all()
}}}

Still returns:

{{{
[<Poll: Poll object>]
}}}

It might be an idea to add a step instructing the user to start a new Python interactive shell by exiting and then running python manage.py shell again. It seems to me that if you don't do this first then Poll.objects.all() will always return [<Poll: Poll object>] no matter what you change in the models.py file until you start a new interactive shell.

This might seem obvious but could trip up a new user.
"		closed	Documentation	1.2		invalid			Accepted	0	0	0	0	0	0
