Skip to content

Commit

Permalink
replace with regular dash -
Browse files Browse the repository at this point in the history
  • Loading branch information
MustafaJafar committed Dec 5, 2024
1 parent 65249cc commit bde4ab3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/ayon_houdini/plugins/publish/extract_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def process(self, instance):
if not os.path.exists(frame)
]
if missing_frames:
missing_frames = "\n\n ".join(missing_frames)
missing_frames = "\n\n - ".join(missing_frames)
raise PublishError(
"Failed to complete render extraction.",
detail=f"Missing output files:\n\n {missing_frames}"
detail=f"Missing output files:\n\n - {missing_frames}"
)
4 changes: 2 additions & 2 deletions client/ayon_houdini/plugins/publish/extract_rop.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ def validate_expected_frames(self, instance: pyblish.api.Instance):
if not os.path.isfile(os.path.join(staging_dir, filename))
]
if missing_filenames:
missing_filenames = "\n\n ".join(missing_filenames)
missing_filenames = "\n\n - ".join(missing_filenames)
raise PublishError(
"Failed to complete render extraction.",
detail=f"Missing frames:\n\n {missing_filenames}"
detail=f"Missing frames:\n\n - {missing_filenames}"
)

def update_representation_data(self,
Expand Down

0 comments on commit bde4ab3

Please sign in to comment.