#33432: Missing comma in 'How to create CSV output'
-----------------------------------------+------------------------
Reporter: Zeilentaucher | Owner: nobody
Type: Bug | Status: new
Component: Documentation | Version: 4.0
Severity: Normal | Keywords:
Triage Stage: Unreviewed | Has patch: 0
Needs documentation: 0 | Needs tests: 0
Patch needs improvement: 0 | Easy pickings: 1
UI/UX: 0 |
-----------------------------------------+------------------------
In the documentation, is a comma missing in the argument list
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.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/056.d0dae8795bbaf2ea7adca7fa71a89537%40djangoproject.com.