From c4e2ad0eac7574b29de3adb565fe8ee67e387f9c Mon Sep 17 00:00:00 2001 From: Mattia Almansi Date: Tue, 30 Jul 2024 16:30:53 +0200 Subject: [PATCH] fix path --- cacholote/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cacholote/config.py b/cacholote/config.py index 6fce4ca..f5cf092 100644 --- a/cacholote/config.py +++ b/cacholote/config.py @@ -52,7 +52,7 @@ def _default_cache_db_urlpath() -> str: def _default_cache_files_urlpaths() -> list[str]: if (config := os.getenv("CACHOLOTE_CACHE_FILES_URLPATHS_CONFIG")) is not None: return pathlib.Path(config).read_text().splitlines() - return [str(_get_tmp_path() / "cache_files.db")] + return [str(_get_tmp_path() / "cache_files")] class Context(abc.ABC):