Fixed bad model example in admin docs.

This commit is contained in:
Collin Anderson 2015-01-13 11:28:43 -05:00 committed by Tim Graham
parent e084ff01f2
commit e7771ec380
1 changed files with 1 additions and 1 deletions

View File

@ -676,7 +676,7 @@ subclass::
For example::
class Person(object):
class Person(models.Model):
first_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50)