1
0
mirror of https://github.com/django/django.git synced 2025-10-25 06:36:07 +00:00

Replaced "not PY3" by "PY2", new in six 1.4.0.

This commit is contained in:
Aymeric Augustin
2013-09-02 12:06:32 +02:00
parent 4292097078
commit 365c3e8b73
27 changed files with 47 additions and 49 deletions

View File

@@ -30,7 +30,7 @@ def python_2_unicode_compatible(klass):
To support Python 2 and 3 with a single code base, define a __str__ method
returning text and apply this decorator to the class.
"""
if not six.PY3:
if six.PY2:
klass.__unicode__ = klass.__str__
klass.__str__ = lambda self: self.__unicode__().encode('utf-8')
return klass