I am getting the following error when following the Django tutorial, V1.7
'>>> Poll.objects.all() Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python2.7/dist-packages/django/db/models/query.py", line 74, in __repr__ return repr(data) File "/usr/local/lib/python2.7/dist-packages/django/db/models/base.py", line 423, in __repr__ u = six.text_type(self) File "/home/michael/workspace/mysite/polls/models.py", line 7, in __unicode__ return self.question AttributeError: 'Poll' object has no attribute 'question''
polls/models.py
? – tjati