1👍
✅
I think the problem is with a space char at the end of djcelery
in INSTALLED_APPS
. Try to remove it and run syncdb
again. Hope that helps.
1👍
Try:
INSTALLED_APPS = (
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Uncomment the next line to enable the admin:
'django.contrib.admin',
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
'pet',
'kombu.transport.django',
'djcelery ',
)
- [Answered ]-Select middle rows in Django ORM
- [Answered ]-What happens to a Django website when you restart Gunicorn?
- [Answered ]-How to separate a database from a Django web-app when going live?
Source:stackexchange.com