From 658dc7045aaba548f908bb26a370eb89fb393bca Mon Sep 17 00:00:00 2001 From: Zeilentaucher <97534187+Zeilentaucher@users.noreply.github.com> Date: Wed, 12 Jan 2022 07:36:27 +0100 Subject: [PATCH] Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt. --- docs/howto/outputting-csv.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/outputting-csv.txt b/docs/howto/outputting-csv.txt index 44461cf4ce..6966466921 100644 --- a/docs/howto/outputting-csv.txt +++ b/docs/howto/outputting-csv.txt @@ -112,7 +112,7 @@ Here's an example, which generates the same CSV file as above:: def some_view(request): # Create the HttpResponse object with the appropriate CSV header. response = HttpResponse( - content_type='text/csv' + content_type='text/csv', headers={'Content-Disposition': 'attachment; filename="somefilename.csv"'}, )