Fixed #30111 -- Fixed AppRegistryNotReady error with django.contrib.postgres in INSTALLED_APPS.

Regression in e192223ed9.
This commit is contained in:
Nasir Hussain 2019-01-23 03:49:30 +05:00 committed by Tim Graham
parent d02b2aa11e
commit 2804b8d215
3 changed files with 44 additions and 10 deletions

View file

@ -0,0 +1,5 @@
SECRET_KEY = 'abcdefg'
INSTALLED_APPS = [
'django.contrib.postgres',
]