﻿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
8388	Wrong SortedDict call in db-api docs for extra(select=...)	Samuel Cormier-Iijima	nobody	"SortedDict only expects one parameter which is iterable.

{{{
Blog.objects.extra(
    select=SortedDict(('a', '%s'), ('b', '%s')),
    select_params=('one', 'two'))
}}}

should therefore really be something like

{{{
Blog.objects.extra(
    select=SortedDict([('a', '%s'), ('b', '%s')]),
    select_params=('one', 'two'))
}}}

Attaching a patch that fixes this."		closed	Documentation	dev		fixed		sciyoshi@…	Ready for checkin	1	0	0	0	0	0
