[Django]-ImportError: cannot import name 'python_2_unicode_compatible' when running migrations for Django-Invitations

4👍

It should work if you install six.

All you then need to do is replace django.utils.encoding with six in your models.py.

👤MGL

Leave a comment