Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reworded error message #1482

Merged
merged 1 commit into from
Nov 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ Negative ``start_frame`` is also handled. The above example with a ``start_frame
)docstring");

py::enum_<ImageSequenceReference::MissingFramePolicy>(imagesequencereference_class, "MissingFramePolicy", "Behavior that should be used by applications when an image file in the sequence can't be found on disk.")
.value("error", ImageSequenceReference::MissingFramePolicy::error, "Application should abort and raise an error.")
.value("error", ImageSequenceReference::MissingFramePolicy::error, "Application should stop and raise an error.")
.value("hold", ImageSequenceReference::MissingFramePolicy::hold, "Application should hold the last available frame before the missing frame.")
.value("black", ImageSequenceReference::MissingFramePolicy::black, "Application should use a black frame in place of the missing frame");

Expand Down