Commit 1059ed51 by Alex Gaynor

Final fix.

parent 08304692
......@@ -73,7 +73,7 @@ class TaggableManager(object):
return form_class(**kwargs)
def value_from_object(self, instance):
return getattr(instance, self.name).all()
return ", ".join(map(unicode, getattr(instance, self.name).all()))
def related_query_name(self):
return None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment