[Answer]-Not using auto_now=True with djangoforms makes GAE crash?

1👍

It depends whether you’re using Python 2.5 or 2.7. If you’re using 2.7, you need to set the DJANGO_SETTINGS_MODULE variable in your app.yaml:

env_variables:
  DJANGO_SETTINGS_MODULE: 'myapp.settings'

See the Django notes.

👤mgiuca

Leave a comment