﻿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
10830	ManyRelatedManager needs a __unicode__() method	Joshua Russo	nobody	"ManyRelatedManager class in django.db.models.fields.related needs a __unicode__() (and __str__()?) method. Without it my inline form within the admin was creating incorrect SQL and causing an error.

This is what I added:
{{{
        def __str__(self):
            return unicode(self._pk_val).encode('utf-8')

        def __unicode__(self):
            return unicode(self._pk_val)
}}}"		closed	Database layer (models, ORM)	1.0		invalid			Unreviewed	0	0	0	0	0	0
