djangobook.com
djangobook.com copied to clipboard
Removed "mysite" from the "Adding Your Models to the Admin Site" section
Within the "Adding Your Models to the Admin Site" section, the code reads from django.contrib import admin from mysite.books.models import Publisher, Author, Book I removed mysite from this statement to read from django.contrib import admin from books.models import Publisher, Author, Book This is due to the fact that "mysite" caused an import error that was corrected by removing "mysite".
i have update it in my repo. see commit