0
0
mirror of https://github.com/django/django.git synced 2024-11-21 19:09:18 +01:00
This commit is contained in:
almaz amanzholuly 2024-03-24 12:32:30 +05:00
parent 2374709e2c
commit 9870a6d906

View File

@ -60,10 +60,7 @@ def check_file_based_cache_is_absolute(app_configs, **kwargs):
alias_name = alias
location = config.get("LOCATION")
if (
location is not None
and not pathlib.Path(location).is_absolute()
):
if location is not None and not pathlib.Path(location).is_absolute():
return [
Warning(
f"Your '{alias_name}' cache LOCATION path is relative. Use an "