askedrelic / django-book

A revival of Django Book, the comprehensive guide to Django, overhauling it for Django 1.4 compatibility
http://django-book.readthedocs.org/en/latest/
Other
55 stars 22 forks source link

Chapter 5: Models - Installing the Model #11

Closed dvreed77 closed 11 years ago

dvreed77 commented 11 years ago

When installing the Books app, the tutorial says to install it as so

INSTALLED_APPS = (
    # 'django.contrib.auth',
    # 'django.contrib.contenttypes',
    # 'django.contrib.sessions',
    # 'django.contrib.sites',
    'mysite.books',
)

this can't find books and so I believe it should be

INSTALLED_APPS = (
    # 'django.contrib.auth',
    # 'django.contrib.contenttypes',
    # 'django.contrib.sessions',
    # 'django.contrib.sites',
    'books',
)
askedrelic commented 11 years ago

Looks good.