From f3c43ad1fd9556f0fd026a5dfa93c67a5cf186ca Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 19 Nov 2016 21:54:19 +0100 Subject: Refs #23919 -- Removed python_2_unicode_compatible decorator usage --- tests/pagination/models.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'tests/pagination') diff --git a/tests/pagination/models.py b/tests/pagination/models.py index 9dc8d4b776..d84dd42ee6 100644 --- a/tests/pagination/models.py +++ b/tests/pagination/models.py @@ -1,8 +1,6 @@ from django.db import models -from django.utils.encoding import python_2_unicode_compatible -@python_2_unicode_compatible class Article(models.Model): headline = models.CharField(max_length=100, default='Default headline') pub_date = models.DateTimeField() -- cgit v1.2.1