﻿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
14407	ManyToManyRawIdWidget.value_from_datadict is inexplicably complicated and can be simplified	Germano Gabbianelli	nobody	"`ManyToManyRawIdWidget.value_from_datadict` can be simplified from:
{{{
!#python
    def value_from_datadict(self, data, files, name):
        value = data.get(name, None)
        if value and ',' in value:
            return data[name].split(',')
        if value:
            return [value]
        return None
}}}
to:
{{{
#!python
    def value_from_datadict(self, data, files, name):
        value = data.get(name)
        if value:
            return value.split(',')
}}}"		closed	contrib.admin	1.2		fixed			Unreviewed	1	0	0	0	0	0
