I checked the original fix and made similar changes in django/http/response.py:
6a7 > from django.utils.encoding import force_str 457c458,459 < parsed = urlparse(redirect_to) --- > redirect_to_as_str = force_str(redirect_to) > parsed = urlparse(redirect_to_as_str) I don't know whether it is proper solution or not, but as a temporary fix it works for me. Michal -- You received this message because you are subscribed to the Google Groups "Django developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-developers. For more options, visit https://groups.google.com/groups/opt_out.
