python_2_unicode_compatible error

后端 未结 6 786
走了就别回头了
走了就别回头了 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 10:55

    try

    from django.utils.six import python_2_unicode_compatible
    

    instead of

    from django.utils.encoding import python_2_unicode_compatible
    

    this works well for me in Django 1.10.6

提交回复
热议问题