Fix incorrect option to overwrite_files for AzureStorage

https://django-storages.readthedocs.io/en/latest/backends/azure.html
This commit is contained in:
Bruno Alla 2024-10-17 19:38:27 +01:00
parent 920c7556f9
commit 830a7c5467
No known key found for this signature in database

View File

@ -170,7 +170,7 @@ STORAGES = {
"BACKEND": "storages.backends.azure_storage.AzureStorage",
"OPTIONS": {
"location": "media",
"file_overwrite": False,
"overwrite_files": False,
},
},
{%- if cookiecutter.use_whitenoise == 'y' %}