Add the ability to import local_settings.

This commit is contained in:
Julien Palard 2020-05-31 23:22:28 +02:00
parent 4ff086e268
commit 34536a1e72
1 changed files with 5 additions and 0 deletions

View File

@ -133,3 +133,8 @@ LOGGING = {
},
},
}
try:
from local_settings import *
except ImportError:
pass