need to update six import location in order to make it compatible with django 3.
replace from django.utils.six.moves.urllib import parse as urlparse with from six.moves.urllib import parse as urlparse at storage file
line from django 3 release page:
django.utils.six - Remove usage of this vendored library or switch to six.
need to update six import location in order to make it compatible with django 3.
replace
from django.utils.six.moves.urllib import parse as urlparsewithfrom six.moves.urllib import parse as urlparseat storage fileline from django 3 release page: