File: docs/howto/outputting-csv.txt
Is:
{{{
response = HttpResponse(
content_type='text/csv'
headers={'Content-Disposition': 'attachment;
filename="somefilename.csv"'},
)
}}}
should be:
{{{
response = HttpResponse(
content_type='text/csv',
headers={'Content-Disposition': 'attachment;
filename="somefilename.csv"'},
)
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/33432>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* stage: Unreviewed => Accepted
Comment:
Thanks for the report. Would you like to prepare a patch?
PS. For the future, no ticket is required for typos.
--
Ticket URL: <https://code.djangoproject.com/ticket/33432#comment:1>
* owner: nobody => Zeilentaucher
* status: new => assigned
* has_patch: 0 => 1
* version: 4.0 => dev
--
Ticket URL: <https://code.djangoproject.com/ticket/33432#comment:2>
* status: assigned => closed
* resolution: => fixed
Comment:
In [changeset:"658dc7045aaba548f908bb26a370eb89fb393bca" 658dc704]:
{{{
#!CommitTicketReference repository=""
revision="658dc7045aaba548f908bb26a370eb89fb393bca"
Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt.
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/33432#comment:3>
Comment (by Mariusz Felisiak <felisiak.mariusz@…>):
In [changeset:"89d88414dc69d04499e14f3614d42fcb820976b9" 89d8841]:
{{{
#!CommitTicketReference repository=""
revision="89d88414dc69d04499e14f3614d42fcb820976b9"
[4.0.x] Fixed #33432 -- Fixed typo in docs/howto/outputting-csv.txt.
Backport of 658dc7045aaba548f908bb26a370eb89fb393bca from main
}}}
--
Ticket URL: <https://code.djangoproject.com/ticket/33432#comment:4>