﻿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
12278	Doc bug: django.utils.translation.string_concat does not take list as argument	William	nobody	"Current source (docs/topics/i18n.txt):

{{{
427	    from django.utils.translation import string_concat
428	    ...
429	    name = ugettext_lazy(u'John Lennon')
430	    instrument = ugettext_lazy(u'guitar')
431	    result = string_concat([name, ': ', instrument])
}}}

This will result in something like this when forced to unicode: `u""[<django.utils.functional.__proxy__ object at 0x1af1d10>, ': ', <django.utils.functional.__proxy__ object at 0x1af1c70>]""`

Should be:

{{{
result = string_concat(name, ': ', instrument)
}}}"		closed	Documentation	1.1		fixed			Ready for checkin	1	0	0	0	0	0
