[1.6.x] Removed a doc reference to the deprecated `mimetype` kwarg.

Backport of 61ed959235 from master
This commit is contained in:
Mohammed Attia 2014-08-07 03:32:41 +03:00 committed by Simon Charette
parent 5fdfa2d9b4
commit 3d8e106ae9
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ MIME type :mimetype:`application/xhtml+xml`::
def my_view(request):
# View code here...
return render_to_response('myapp/index.html', {"foo": "bar"},
mimetype="application/xhtml+xml")
content_type="application/xhtml+xml")
This example is equivalent to::