diff options
author | Dan McGee <dan@archlinux.org> | 2013-01-13 22:34:33 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-01-13 22:34:33 -0600 |
commit | 66850026ca934e5a09238e9033c541cdc5085a42 (patch) | |
tree | f92873cdc34c2ebf446173513da54b96f9bb156f /mirrors/views.py | |
parent | 019785186ce5861215ece96818513ec21e15df41 (diff) |
Use content_type and not mimetype on HttpResponse()
Bug #16519 in Django deprecates mimetype, so update our code
accordingly.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors/views.py')
-rw-r--r-- | mirrors/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mirrors/views.py b/mirrors/views.py index 22da631a..d3867802 100644 --- a/mirrors/views.py +++ b/mirrors/views.py @@ -199,7 +199,7 @@ def mirror_details_json(request, name): data['version'] = 3 to_json = json.dumps(data, ensure_ascii=False, cls=ExtendedMirrorStatusJSONEncoder) - response = HttpResponse(to_json, mimetype='application/json') + response = HttpResponse(to_json, content_type='application/json') return response @@ -285,7 +285,7 @@ def status_json(request): data = status_info.copy() data['version'] = 3 to_json = json.dumps(data, ensure_ascii=False, cls=MirrorStatusJSONEncoder) - response = HttpResponse(to_json, mimetype='application/json') + response = HttpResponse(to_json, content_type='application/json') return response # vim: set ts=4 sw=4 et: |