mirror of
https://github.com/django/django.git
synced 2025-10-30 17:16:10 +00:00
Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.
Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
class Tag(models.Model):
|
||||
@@ -36,4 +38,4 @@ class StaffTag(models.Model):
|
||||
tag = models.ForeignKey(Tag)
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s -> %s" % (self.tag, self.staff)
|
||||
return "%s -> %s" % (self.tag, self.staff)
|
||||
|
||||
Reference in New Issue
Block a user