GAE sdk 1.1.9 problem with django helper(appengine_django)
2009-04-16 03:55:35 Category:Python Tags:
The django helper could not find the app.yaml when I updated the gae sdk to 1.1.9 and djano version is 0.96. We need add the content into the app.yaml file to enable uploadding the app.yaml into the development envirment :
skip_files:
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
Then django/core/management could not find the django.get_version function. We need modify the __init__.py in django directory:
VERSION = (0, 96.2, None)
def get_version():
return Version
It works fine.

TrackBack
TrackBack URL: http://jum.appspot.com/feeds/trackBack/16643/
yxgxwlzx-yxgxwlzx(2009-05-10 08:50:14):
yxgxwlzx