我正在阅读 django 官方教程(http://docs.djangoproject.com/en/dev/intro/tutorial01/)。当我尝试运行“python manage.py shell”时,python 抛出错误:
File "D:\DjangoProjects\mysite\polls\models.py", line 8
def __unicode__(self):
^
IndentationError: unexpected indent
请帮忙!如何解决这个问题?
模型.py:
import datetime
from django.db import models
# Create your models here.
class Poll(models.Model):
question = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def __unicode__(self):
return self.question
class Choice(models.Model):
poll = models.ForeignKey(Poll)
choice = models.CharField(max_length=200)
votes = models.IntegerField()
def __unicode__(self):
return self.choice