AppEngine dev_appserver.py aborts with no error message

Posted by Gj on Stack Overflow See other posts from Stack Overflow or by Gj
Published on 2010-04-12T19:14:55Z Indexed on 2010/04/12 19:23 UTC
Read the original article Hit count: 271

Filed under:
|
|
|

I have an app which works well live on AppEngine. However, when I try to run it locally with the dev_appserver.py, it aborts within ~1 second with:

    ~/ dev_appserver.py --debug_imports myapp
/opt/local/share/google_appengine/google/appengine/api/datastore_file_stub.py:40: DeprecationWarning: the md5 module is deprecated; use hashlib instead
  import md5
/opt/local/share/google_appengine/google/appengine/api/memcache/__init__.py:31: DeprecationWarning: the sha module is deprecated; use the hashlib module instead
  import sha

I'm on OS X 10.6.3, Python 2.6.4 + Django 1.1.1 + appengine 1.3.1 (all installed via macports)

Any ideas? Thanks!

© Stack Overflow or respective owner

Related posts about google-app-engine

Related posts about python