Hi Carlin, Carlin Wiegner wrote: > Right now my models.py is in the root directory of "mysite".
As I believe Ian was hinting at in his response, the helper (and Django) expect your models to be within a Django application (basically a subfolder) of your Django project (your Django project == your App Engine application, confusing I know ;p). So you need to create a directory, say called "myapp" and place your models.py in that (don't forget to also add __init__.py). Then you list "myapp" in the INSTALLED_APPS section of settings.py and you should be good to go. Cheers Matt Brown --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. 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 -~----------~----~----~----~------~----~------~--~---
