﻿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
20107	"Error in example for ""Using initial data with a formset"""	anteater_sa	nobody	"https://docs.djangoproject.com/en/1.5/topics/forms/formsets/#using-initial-data-with-a-formset

In the docs the initial dict is wrapped in a list which causes an error in Django 1.5, should be:


{{{
>>> ArticleFormSet = formset_factory(ArticleForm, extra=2)
>>> formset = ArticleFormSet(initial={
...     'title': u'Django is now open source',
...     'pub_date': datetime.date.today(),
... })
}}}
"	Uncategorized	closed	Documentation	1.5	Normal	invalid			Unreviewed	0	0	0	0	1	0
