Why doesn't appengine auto-convert datetime to UTC when calling put()
The solution is to remove the tzinfo
completely from the time after converting to UTC.
timestamp = timestamp.replace(tzinfo=None)
The solution is to remove the tzinfo
completely from the time after converting to UTC.
timestamp = timestamp.replace(tzinfo=None)