From b416b9b0581407210f2c7f38bb6038ae495b0ac1 Mon Sep 17 00:00:00 2001 From: KaySar12 Date: Thu, 20 Mar 2025 14:37:19 +0700 Subject: [PATCH] update --- setup/record_cleaner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/record_cleaner.py b/setup/record_cleaner.py index 0f97cdb23..4753a812f 100755 --- a/setup/record_cleaner.py +++ b/setup/record_cleaner.py @@ -112,7 +112,7 @@ def get_related_fields( odoo: odoorpc.ODOO, args: argparse.Namespace ) -> Dict[str, List[str]]: """Retrieve related fields with cache management.""" - cache_path = os.path.join(CACHE_DIR, args.db_name, f"{args.base_model}.json") + cache_path = os.path.join(CACHE_DIR, args.db_name, f"{args.base_model}.cache.json") os.makedirs(os.path.dirname(cache_path), exist_ok=True) if not args.refresh_cache and os.path.exists(cache_path):