Fix Django warning about old TEMPLATES_* settings.

This commit is contained in:
Ben Sturmfels 2021-12-17 18:35:50 +11:00
parent 127d5aa962
commit 67a3e11cc9

View file

@ -34,13 +34,6 @@ REDIRECT_TABLE = {
'www.sf-conservancy.org': 'sfconservancy.org',
}
_root_dir = os.path.abspath(os.path.dirname(__file__))
TEMPLATE_DIRS = (
os.path.join(_root_dir, 'templates'),
os.path.join(_root_dir, 'static'),
)
del _root_dir
LOGGING = {
'version': 1,
'disable_existing_loggers': False,