﻿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
5254	Tutorial correction	dorai@…	Jacob	"Polls model.py 

from django.db import models

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()

This gives an error. max_length in both the classes need to be changed to maxlength in the tutorial. I am using the 0.96 version.
"		closed	*.djangoproject.com	0.96		invalid	tutorial model Polls		Unreviewed	0	0	0	0	0	0
