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):