python_2_unicode_compatible error

后端 未结 6 795
走了就别回头了
走了就别回头了 2020-12-06 10:22

I\'ve models.py as follows,

from django.contrib.auth.models import User
from django.db import models
from django.utils.encoding import python_2_         


        
6条回答
  •  半阙折子戏
    2020-12-06 11:00

    python_2_unicode_compatible feature has only been added in Django 1.5 version.

    https://docs.djangoproject.com/en/dev/ref/utils/#django.utils.encoding.python_2_unicode_compatible

提交回复
热议问题