﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33432	Missing comma in 'How to create CSV output'	Zeilentaucher	Zeilentaucher	"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""'},
        )
}}}
"	Bug	closed	Documentation	dev	Normal	fixed			Accepted	1	0	0	0	1	0
