Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt.

This commit is contained in:
Zeilentaucher 2022-01-12 07:36:27 +01:00 committed by GitHub
parent dc9deea8e8
commit 658dc7045a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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"'},
)