From 49281840320f1c1e671dab34bd74fffbf2ed406d Mon Sep 17 00:00:00 2001 From: ptresson <paul.tresson@ird.fr> Date: Fri, 7 Mar 2025 12:24:30 +0100 Subject: [PATCH] widen error handling for temp files merging. related to #45 --- encoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encoder.py b/encoder.py index 6980bbf..d430b87 100644 --- a/encoder.py +++ b/encoder.py @@ -627,7 +627,7 @@ class EncoderAlgorithm(IAMAPAlgorithm): # overwritting merged_tmp.tif may be impossible in windows (e.g. if an antivirus is analysing the newly created data) # then, merging and cleaning is impossible - except rasterio._err.CPLE_AppDefinedError as e : + except Exception as e : feedback.pushWarning(f"Unable to cleaning temporary files ! Try to delete them latter at {self.output_subdir}") self.all_encoding_done = True -- GitLab