From 75c66c98d2e5589505db7699b6ceb515a29db24a Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 8 May 2025 09:32:01 +0200 Subject: [PATCH] attempt to fix xls-to-csv issu --- api/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/views.py b/api/views.py index d9d390a..9154ff2 100644 --- a/api/views.py +++ b/api/views.py @@ -414,7 +414,7 @@ def xls_to_csv(request): logger.info(f'full_path = {full_path}') # Check available sheets and look for 'inscriptions' - xls = pd.ExcelFile(file_name) + xls = pd.ExcelFile(full_path) sheet_names = xls.sheet_names # Determine which sheet to use