We have a view which redirects to a Non-HTTP url scheme. Its used in an iOS app. But since we have upgraded to Django1.4 we are getting a crash when this redirect code is execut
I believe you'll need to have a custom Response object, consider following:
response = HttpResponse("", status=302) response['Location'] = "appdev://..." return response