﻿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
8199	incorrect parameter for 'CharField' in http://www.djangoproject.com/documentation/model-api/	tsmets	nobody	"Doco's indicates :
CharField has an extra required argument, max_length

should be 
CharField has an extra required argument, 'maxlength'


Similarilly in http://www.djangoproject.com/documentation/model-api/

you have

''from django.db import models

class Person(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)

''
should be 

''
from django.db import models

class Person(models.Model):
    first_name = models.CharField(maxlength=30)
    last_name = models.CharField(maxlength=30)''



"		closed	Documentation	0.96		invalid			Unreviewed	0	0	0	0	0	0
