Hi,
I got this error in my logs:
You are using the default Django version (0.96). The default Django version
will change in an App Engine release in the near future. Please call
use_library() to explicitly select a Django version. For more information see
http://code.google.com/appengine/docs/python/tools/libraries.html#Django
My code is:
from django.utils import simplejson as json
In the documents there is written to change it like this:
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'
from google.appengine.dist import use_library
use_library('django', '1.1')
But I'm importing just a specific library.
How do I have to set it? I can't understand.
Thanks
Max
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/FTxXueui_LoJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.