diff options
Diffstat (limited to 'tests/modeltests/custom_methods/models.py')
| -rw-r--r-- | tests/modeltests/custom_methods/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/custom_methods/models.py b/tests/modeltests/custom_methods/models.py index 5a6581805a..b0ca4131a5 100644 --- a/tests/modeltests/custom_methods/models.py +++ b/tests/modeltests/custom_methods/models.py @@ -8,7 +8,7 @@ from django.db import models import datetime class Article(models.Model): - headline = models.CharField(maxlength=100) + headline = models.CharField(max_length=100) pub_date = models.DateField() def __unicode__(self): |
