From e86d91e0a02cf9dabde74af2f4e09b90f651ff8a Mon Sep 17 00:00:00 2001 From: Joshua Minor Date: Fri, 18 Nov 2022 14:00:29 -0800 Subject: [PATCH] Reworded error message. (#1482) Signed-off-by: Joshua Minor Signed-off-by: Joshua Minor --- .../opentimelineio-bindings/otio_serializableObjects.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/py-opentimelineio/opentimelineio-bindings/otio_serializableObjects.cpp b/src/py-opentimelineio/opentimelineio-bindings/otio_serializableObjects.cpp index 5aabd64ba..7fdd9d061 100644 --- a/src/py-opentimelineio/opentimelineio-bindings/otio_serializableObjects.cpp +++ b/src/py-opentimelineio/opentimelineio-bindings/otio_serializableObjects.cpp @@ -844,7 +844,7 @@ Negative ``start_frame`` is also handled. The above example with a ``start_frame )docstring"); py::enum_(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");