报错:ImportError: cannot import name 'six'

解决方案:

将 from django.utils import six

改成:

import six

相关文章: