Reverse order of local_settings loading in order to allow adding new installed apps

This commit is contained in:
Timothy Hobbs
2023-10-23 12:47:05 +02:00
parent 8d08b83446
commit 90c9b3311e
4 changed files with 4 additions and 6 deletions

View File

@ -229,8 +229,3 @@ MEDIA_ROOT = '/data/media'
# for Django 3.2+, set default for autofields:
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
try:
from .local_settings import *
except ImportError:
pass