diff options
| author | Claude Paroz <claude@2xlibre.net> | 2016-11-19 21:54:19 +0100 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2017-01-18 13:44:34 +0100 |
| commit | f3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca (patch) | |
| tree | 65ca40d4527b377845cdd382456383bf97caafa6 /tests/dates | |
| parent | d7b9aaa366dd54ecc3142c588162e3adc7c2f7ac (diff) | |
Refs #23919 -- Removed python_2_unicode_compatible decorator usage
Diffstat (limited to 'tests/dates')
| -rw-r--r-- | tests/dates/models.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/dates/models.py b/tests/dates/models.py index 978cf44e95..74f9db28ad 100644 --- a/tests/dates/models.py +++ b/tests/dates/models.py @@ -1,9 +1,7 @@ from django.db import models from django.utils import timezone -from django.utils.encoding import python_2_unicode_compatible -@python_2_unicode_compatible class Article(models.Model): title = models.CharField(max_length=100) pub_date = models.DateField() @@ -15,7 +13,6 @@ class Article(models.Model): return self.title -@python_2_unicode_compatible class Comment(models.Model): article = models.ForeignKey(Article, models.CASCADE, related_name="comments") text = models.TextField() |
