Looks like you've got one too many datetimes. type object 'datetime.datetime' has no attribute 'datetime
That looks like instead of having import datetime at the top, you've got from datetime import datetime at the top. In which case, you'd just call "datetime" in your code, and not "datetime.datetime" -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
