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:
if child_path.is_file():
_add_file_to_zip(zip_file=zip_file, file_path=child_path)
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.
......
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