krisrak
krisrak

Reputation: 12952

django.utils module import error in appengine 1.7.6

I just updated to 1.7.6 appengine and started getting ImportError for django.utils, my app is using python 2.5 and had no issues running before this update.

Any idea if this was removed in the update?

line 1, in <module>
from django.utils import simplejson
ImportError: No module named django.utils

Upvotes: 2

Views: 670

Answers (1)

Dave W. Smith
Dave W. Smith

Reputation: 24966

If you're not able to upgrade to 2.7, try using old_dev_appserver.py instead of dev_appserver.py.

Upvotes: 1

Related Questions