I have my application up and running with the Google App Engine Helper
for Django.

But when I went to add a simple model:

models.py
--------------

from appengine_django.models import BaseModel
from google.appengine.ext import db

class Quiz(BaseModel):
    question = db.StringProperty()

I started getting the following error:

IndexError at /
list index out of range
Request Method:         GET
Request URL:    http://localhost:8080/
Exception Type:         IndexError
Exception Value:        list index out of range
Exception Location:     /Users/carlin/Documents/Personal/Programming/
mysite/appengine_django/models.py in __init__, line 51

Any ideas?

Thanks,
cw
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to