﻿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
5259	Tutorial part 1 correction: change 'max_length' to 'maxlength'	sullivan@…	Jacob	"
At http://www.djangoproject.com/documentation/tutorial01/
the defs for Poll and Choice are:
{{{
    class Poll(models.Model):
        question = models.CharField(max_length=200)
        pub_date = models.DateTimeField('date published')

    class Choice(models.Model):
        poll = models.ForeignKey(Poll)
        choice = models.CharField(max_length=200)
        votes = models.IntegerField()
}}}
In them I had to change 'max_length' to 'maxlength'
to get them to work.
"		closed	Documentation	dev		duplicate			Unreviewed	0	0	0	0	0	0
