Nicpon
Nicpon

Reputation: 95

Running django app on Google App Engine

I'm trying to run existing django project on google app engine using this tutorial

After copying the files I run manage.py runserver and I get the following error:

ValueError: Unable to configure filter 'require_debug_false': Cannot resolve 'django.utils.log.RequireDebugFalse': No module named RequireDebugFalse

Is there a problem with Django version? I use 1.3.7 but I don't know which one is used in this tutorial.

Upvotes: 0

Views: 113

Answers (2)

Leonardo.Z
Leonardo.Z

Reputation: 9781

It's about your Django version. RequireDebugFalse is new in Django 1.4 (doc).

Upvotes: 1

dragonx
dragonx

Reputation: 15143

If you're following that tutorial, you have to use django-nonrel.

If you're not using django-nonrel, then you don't need to follow that tutorial. You would follow a typical django tutorial, but you must use CloudSQL instead of the datastore.

Upvotes: 1

Related Questions