I have datastore Model bellow:
class ThisCategory(search.SearchableModel):
ancestor = db.ListProperty(db.Key, default=[])
no_ancestor = db.BooleanProperty(default=True)
name = db.StringProperty()
description = db.TextProperty()
last_modified = db.TimeProperty(auto_now=True) #<----- (1970-01-01 15:36:47.987352) in datastore
How to create/result correct now date?