Opened 17 years ago

Closed 17 years ago

#5159 closed (duplicate)

'max_length=200' should be replaced by 'maxlength=200' in part 1 of django tutorial

Reported by: sarahman@… Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Hi,

In the following example from part 1 of the django tutorial, when I tried running 'python manage.py sql polls', I got a TypeError: init() got an unexpected keyword argument 'max_length'. The error disappeared when I changed 'max_length=200' to 'maxlength=200'. Is this an error in the tutorial documentation?

Cheers,

Sabbir.


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()

Change History (1)

comment:1 by Matt McClanahan <cardinal@…>, 17 years ago

Resolution: duplicate
Status: newclosed

Dupe of #5119

Note: See TracTickets for help on using tickets.
Back to Top