Re: __unicode__() addition not working in basic poll application.

2014-03-27 Thread Steve Evans
=0) > def __unicode__(self): > return self.choice_text > > > Good luck! > > > Shai. > > > On Thu, Mar 27, 2014 at 12:06 PM, Steve Evans <00se...@gmail.com > > wrote: > >> Hi I am having the same issue: >> >> I am using Pytho

Re: __unicode__() addition not working in basic poll application.

2014-03-27 Thread Steve Evans
Hi I am having the same issue: I am using Python 2.7, and Django 1.6. Here is my code for models.py: import datetime from django.db import models from django.utils import timezone # Create your models here. class Poll(models.Model): question = models.CharField(max_length=200) def __unicode_