"...composable_kernel_rocm.git" did not exist on "d02a92cc0d8524bd29192ade42be9a37c7342284"
Unverified Commit 6332c6e7 authored by Jakob Görgen's avatar Jakob Görgen
Browse files

symphony/utils: fixed exception message

parent 22c72b25
...@@ -42,7 +42,7 @@ def _add_folder_to_zip(zip_file: zipfile.ZipFile, dir_path: str) -> None: ...@@ -42,7 +42,7 @@ def _add_folder_to_zip(zip_file: zipfile.ZipFile, dir_path: str) -> None:
if child_path.is_file(): if child_path.is_file():
_add_file_to_zip(zip_file=zip_file, file_path=child_path) _add_file_to_zip(zip_file=zip_file, file_path=child_path)
else: else:
raise Exception(f"_add_folder_to_zip: cannot add {path} to zip") raise Exception(f"_add_folder_to_zip: cannot add {str(path)} to zip")
# create an artifact containing all files and folders specified as paths. # create an artifact containing all files and folders specified as paths.
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment