WD5 - разработка сайтов

Решено: django.core.exceptions.ImproperlyConfigured: The TEMPLATE_DIRS setting must be a tuple. Please fix your settings.

django.core.exceptions.ImproperlyConfigured: The TEMPLATE_DIRS setting must be a tuple. Please fix your settings.

Путь до папки шаблонов был указан в виде строки "str"

TEMPLATE_DIRS = os.path.join(PROJECT_PATH, 'templates') 

Сейчас требуется Кортеж (Tuple) ('s',)

TEMPLATE_DIRS = (os.path.join(PROJECT_PATH, 'templates'),)
None