On 1/29/06, kbochert <[EMAIL PROTECTED]> wrote:
> I'm trying to run through the tutorial and when I get to the step:
> 'python manage.py sql polls'
> I get the error
> AttributeError: 'module' object has no attribute '_MODELS'
> (management.py line 65)
> I'm using SQLite.

Hi Karl,

Chances are you did some stuff in the tutorial out of order. Make sure
your polls/models/polls.py file contains some models, and make sure
the file polls/models/__init__.py includes the following:

    __all__ = ['polls']

Adrian

--
Adrian Holovaty
holovaty.com | djangoproject.com | chicagocrime.org

Reply via email to