How to stop Django "app not found" error?
Posted
by cml
on Stack Overflow
See other posts from Stack Overflow
or by cml
Published on 2010-05-31T11:32:17Z
Indexed on
2010/05/31
11:42 UTC
Read the original article
Hit count: 181
When I run python ./manage.py sql grading
my django site comes up with:
Error: App with label grading could not be found. Are you sure you INSTALLED_APPS setting is correct?
I have the app grading with __init__.py and everything, and my INSTALLED APPS is:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'teachline.courses',
'teachline.grading',
)
Why isn't this working?
© Stack Overflow or respective owner