summaryrefslogtreecommitdiff
path: root/docs/howto/outputting-csv.txt
diff options
context:
space:
mode:
authorZeilentaucher <97534187+Zeilentaucher@users.noreply.github.com>2022-01-12 07:36:27 +0100
committerGitHub <noreply@github.com>2022-01-12 07:36:27 +0100
commit658dc7045aaba548f908bb26a370eb89fb393bca (patch)
treef0bd50f8ee4a6cc9ac4b5686396d339f2979c9da /docs/howto/outputting-csv.txt
parentdc9deea8e85641695e489e43ed5d5638134c15c7 (diff)
Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt.
Diffstat (limited to 'docs/howto/outputting-csv.txt')
-rw-r--r--docs/howto/outputting-csv.txt2
1 files changed, 1 insertions, 1 deletions
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"'},
)