We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got an warning when using with django 1.6:
[23/Apr/2014 17:00:41] "GET /static/dajaxice/dajaxice.core.js HTTP/1.1" 200 10319 /usr/local/lib/python2.7/dist-packages/django/http/response.py:330: DeprecationWarning: Using mimetype keyword argument is deprecated, use content_type instead super(HttpResponse, self).init(_args, *_kwargs)
The text was updated successfully, but these errors were encountered:
In dajaxice/views.py edit line 58 to read: return HttpResponse(response, content_type="application/x-json")
return HttpResponse(response, content_type="application/x-json")
Sorry, something went wrong.
No branches or pull requests
I got an warning when using with django 1.6:
[23/Apr/2014 17:00:41] "GET /static/dajaxice/dajaxice.core.js HTTP/1.1" 200 10319
/usr/local/lib/python2.7/dist-packages/django/http/response.py:330: DeprecationWarning: Using mimetype keyword argument is deprecated, use content_type instead
super(HttpResponse, self).init(_args, *_kwargs)
The text was updated successfully, but these errors were encountered: