#33432 closed Bug (fixed)
Missing comma in 'How to create CSV output'
| Reported by: | Zeilentaucher | Owned by: | Zeilentaucher |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Normal | Keywords: | |
| Cc: | Triage Stage: | Accepted | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | yes | UI/UX: | no |
Description
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"'},
)
Change History (4)
comment:1 by , 4 years ago
| Triage Stage: | Unreviewed → Accepted |
|---|
comment:2 by , 4 years ago
| Has patch: | set |
|---|---|
| Owner: | changed from to |
| Status: | new → assigned |
| Version: | 4.0 → dev |
Note:
See TracTickets
for help on using tickets.
Thanks for the report. Would you like to prepare a patch?
PS. For the future, no ticket is required for typos.