﻿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
9876	Incorrect max_length specification	dberger	nobody	"In tutorial 1, both development and v 0.96, the following code block is given.


{{{
from django.db import models

class Poll(models.Model):
    question = models.CharField(maxlength=200)
    pub_date = models.DateTimeField('date published')

class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(maxlength=200)
    votes = models.IntegerField()
}}}

I am using the latest non-development release, 1.0.2.  The necessary propert is max_length instead of maxlength."		closed	Documentation	1.0		invalid			Unreviewed	0	0	0	0	0	0
