mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Refs #29983 -- Added support for using pathlib.Path in all settings.
This commit is contained in:
committed by
Carlton Gibson
parent
367634f976
commit
77aa74cb70
@@ -39,7 +39,7 @@ class EngineMixin:
|
||||
def engine(self):
|
||||
return self.backend({
|
||||
'APP_DIRS': True,
|
||||
'DIRS': [str(ROOT / self.backend.app_dirname)],
|
||||
'DIRS': [ROOT / self.backend.app_dirname],
|
||||
'NAME': 'djangoforms',
|
||||
'OPTIONS': {},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user