Skip to content

Commit

Permalink
Reworded error message. (#1482)
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Minor <joshm@pixar.com>

Signed-off-by: Joshua Minor <joshm@pixar.com>
  • Loading branch information
jminor committed Nov 18, 2022
1 parent 0c80e91 commit e86d91e
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit e86d91e

Please sign in to comment.