这是我的代码:
from django.db import models
from django.utils.encoding import smart_unicode
class SignUp(models.Model):
first_name = models.CharField(max_length=120, null=True, blank=True)
last_name = models.CharField(max_length=120, null=True, blank=True)
email = models.EmailField()
timestamp = models.DateTimeField(auto_now_add=True, auto_now=False)
updated = models.DateTimeField(auto_now_add=False, auto_now=True)
def __unicode__(self):
return smart_unicode(self.email)
这就是我得到的。请帮助谢谢你。
updated = models.DateTimeField(auto_now_add=False, auto_now=True)
^
IndentationError:unindent与任何外部缩进级别
不匹配答案 0 :(得分:1)
timestamp
之前有一个制表符。您应该使用空格或制表符来缩进Python,而不是两者。您的编辑器可能会显示缩进看起来正确,但可能与Python理解选项卡的方式不符。
PEP-8表示只使用空格。