hey thanks mathias for taking the effort to put up the post.
The warnings have disappeared and I no longer have to put the SDK
folder inside the app engine folder.
But this Error: Your action, 'update', was invalid. still remains when
i try to run this command python manage.py update
I dont see any action called update when I type in
python manage.py --help
One more thing.When I try to print the version of django
from django.http import HttpResponse
from django import VERSION
def current_version(request):
html = "<html><body>It is now %s.</body></html>" % str(VERSION)
return HttpResponse(html)
It shows me
"It is now (0, 96.099999999999994, None)".
But when I go to the python prompt and do this
>>> import django
>>> django.VERSION
This is what is displayed
(0, 97, 'pre')
Im a little confused because of this.
Regards,
Cherry