Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
6332c6e7
"...composable_kernel_rocm.git" did not exist on "d02a92cc0d8524bd29192ade42be9a37c7342284"
Unverified
Commit
6332c6e7
authored
Dec 10, 2024
by
Jakob Görgen
Browse files
symphony/utils: fixed exception message
parent
22c72b25
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
symphony/utils/simbricks/utils/artifatcs.py
symphony/utils/simbricks/utils/artifatcs.py
+1
-1
No files found.
symphony/utils/simbricks/utils/artifatcs.py
View file @
6332c6e7
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment