#5905 closed (invalid)
Typo in WritingFirstApp/Part1/CreatingModels, polls/models.py should read maxlength not max_length
| Reported by: | Owned by: | nobody | |
|---|---|---|---|
| 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
using Django 0.96.1 on WindowsXP/Python24/Mysql50, in tutorial WritingFirstApp/PartOne/CreatingModels, I get an error if I follow these instructions
These concepts are represented by simple Python classes. Edit the polls/models.py file so it looks like this:
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()
I get an error when I run
python manage.py sql polls
unless I remove the underscore from the CharFields of Poll and Choice models to read
... .CharField(maxlength=200)
Change History (2)
comment:1 by , 18 years ago
| Resolution: | → invalid |
|---|---|
| Status: | new → closed |
comment:2 by , 18 years ago
Note:
See TracTickets
for help on using tickets.
Those instructions are for trunk, which does use the underscore, there are seperate docs for .96.