I have django-tagging installed and working fine. I have a model called Plane, which has a few hundred objects in the database, almost all of them with at least one tag. The tagging_tag, and the tagging_taggeditem table in my database looks fine. All the tags are listed there correctly. When I look at the table for the Plane model, the tag field looks like this "tag1, tag2, tag3", yet when I try to use the tagging utilities to get all tags for an object, this code returns an empty list:
TaggedItem.objects.get_by_model(Plane.objects.get(pk=1), "tag2") but this code returns what I would expect: TaggedItem.objects.get_by_model(Plane.objects.get(pk=1), ", tag2") How can I fix this? I want it to ignore the space and the comma. If I change the tag field to "tag1,tag2,tag3", it works fine, but for ease of reading, I'd like to have the space there. Is this possible with django-tagging? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---