With 'kombu.transport.django.KombuAppConfig' in INSTALLED_APPS,
running any manage.py command throws:

ImportError: No module named KombuAppConfig

It is fixed by changing 'kombu.transport.django.KombuAppConfig' to 'kombu.transport.django'
This commit is contained in:
Zhaorong Ma 2015-09-08 14:21:40 -04:00
Родитель f29a55d135
Коммит 9def9bdab1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -132,7 +132,7 @@ INSTALLED_APPS = (
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'django.contrib.admin', 'django.contrib.admin',
'kombu.transport.django.KombuAppConfig', 'kombu.transport.django',
'demoapp', 'demoapp',
# Uncomment the next line to enable the admin: # Uncomment the next line to enable the admin:
# 'django.contrib.admin', # 'django.contrib.admin',