def verify(self):
instigator = self.instigator
if instigator is None:
return True
last = instigator.last_votemap
if (last is not None and
reactor.seconds() - last < self.vote_interval):
return "You can't start a vote now."
return True
评论列表
文章目录