I am working through the first tutorial, and ran into my 1st problem in this section:
http://docs.djangoproject.com/en/dev/intro/tutorial01/#playing-with-the-api where we add __unicode__ methods to our models. for example: class Poll(models.Model): # ... def __unicode__(self): return self.question These are not working for me. The tutorial notes that "If you add the __unicode__() method to your models and don't see any change in how they're represented, you're most likely using an old version of Django." However, I am using the current release 1.1. Shouldn't it be working for me? Thanks, Jonah --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---