I've read over some of the gotchas with since the unicode branch merge, and have successfully dealt with all of them up til now, but I'm not sure what to do here... I'm throwing an error with my feed. The same data appears on the site fine, but in my feed I get UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 24: ordinal not in range(128)
This is the feed that's doing it. class NewsFeed(Feed): title = "Classic Motorsports - What's New" link = "/news/" description = "Latest Classic Motorsports News" def items(self): return News_item.objects.filter(pub_date__lte=now).order_by('- pub_date')[:20] def item_link(self): return "http://classicmotorsports.net/news/" --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---