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