summaryrefslogtreecommitdiff
path: root/tests/m2m_and_m2o
diff options
context:
space:
mode:
Diffstat (limited to 'tests/m2m_and_m2o')
-rw-r--r--tests/m2m_and_m2o/models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/m2m_and_m2o/models.py b/tests/m2m_and_m2o/models.py
index 7174e6369a..d9da2bf534 100644
--- a/tests/m2m_and_m2o/models.py
+++ b/tests/m2m_and_m2o/models.py
@@ -4,7 +4,6 @@ Many-to-many and many-to-one relationships to the same table
Make sure to set ``related_name`` if you use relationships to the same table.
"""
from django.db import models
-from django.utils import six
class User(models.Model):
@@ -17,7 +16,7 @@ class Issue(models.Model):
client = models.ForeignKey(User, models.CASCADE, related_name='test_issue_client')
def __str__(self):
- return six.text_type(self.num)
+ return str(self.num)
class Meta:
ordering = ('num',)