mirror of
https://github.com/django/django.git
synced 2025-10-29 00:26:07 +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:
@@ -4,6 +4,7 @@
|
||||
To execute arbitrary code around ``save()`` and ``delete()``, just subclass
|
||||
the methods.
|
||||
"""
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models
|
||||
|
||||
@@ -17,7 +18,7 @@ class Person(models.Model):
|
||||
self.data = []
|
||||
|
||||
def __unicode__(self):
|
||||
return u"%s %s" % (self.first_name, self.last_name)
|
||||
return "%s %s" % (self.first_name, self.last_name)
|
||||
|
||||
def save(self, *args, **kwargs):
|
||||
self.data.append("Before save")
|
||||
|
||||
Reference in New Issue
Block a user