Add default values for the new settings

This commit is contained in:
tcely 2025-01-28 16:29:45 -05:00 committed by GitHub
parent d9c73d3dd7
commit e59ba88e4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -177,6 +177,10 @@ COOKIES_FILE = CONFIG_BASE_DIR / 'cookies.txt'
MEDIA_FORMATSTR_DEFAULT = '{yyyy_mm_dd}_{source}_{title}_{key}_{format}.{ext}'
RENAME_ALL_SOURCES = False
RENAME_SOURCES = None
try:
from .local_settings import *
except ImportError as e: