You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey I'm trying to use it with Django 2.1 and I get this:
\lib\site-packages\django_sorting_field\fields.py", line 4, in
from django.utils.text import force_text
ImportError: cannot import name 'force_text' from 'django.utils.text'
Needs to be changed to:
from django.utils.encoding import force_text
The text was updated successfully, but these errors were encountered:
Hey I'm trying to use it with Django 2.1 and I get this:
\lib\site-packages\django_sorting_field\fields.py", line 4, in
from django.utils.text import force_text
ImportError: cannot import name 'force_text' from 'django.utils.text'
Needs to be changed to:
from django.utils.encoding import force_text
The text was updated successfully, but these errors were encountered: