Pārlūkot izejas kodu

Improve error handling in BTR downloader

Johannes Gütschow 3 mēneši atpakaļ
vecāks
revīzija
11b41d2585
1 mainītis faili ar 10 papildinājumiem un 0 dzēšanām
  1. 10 0
      src/unfccc_ghg_data/unfccc_downloader/download_btr.py

+ 10 - 0
src/unfccc_ghg_data/unfccc_downloader/download_btr.py

@@ -154,6 +154,16 @@ if __name__ == "__main__":
                             "Zip format not supported, please unzip on the command "
                             "line."
                         )
+                    except OSError as ex:
+                        if ex.errno == 36:  # noqa: PLR2004
+                            print(
+                                f"A filename is too long in file: "
+                                f"{local_filename.relative_to(root_path)}. "
+                                "Unzip manually if any other files needed."
+                                f" Message: {ex}"
+                            )
+                        else:
+                            raise
                 else:
                     print(
                         f"Not attempting to extract "