Changed tuple choices to list in docs.

This commit is contained in:
Jon Dufresne 2019-05-15 05:31:42 -07:00 committed by Carlton Gibson
parent 717362d810
commit 97d3321e89
8 changed files with 27 additions and 27 deletions

View file

@ -47,11 +47,11 @@ simple news application with an ``Article`` model::
from django.db import models
STATUS_CHOICES = (
STATUS_CHOICES = [
('d', 'Draft'),
('p', 'Published'),
('w', 'Withdrawn'),
)
]
class Article(models.Model):
title = models.CharField(max_length=100)