Przeglądaj źródła

Improve error handling in BTR downloader

Johannes Gütschow 3 miesięcy temu
rodzic
commit
11b41d2585

+ 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 "