Skip to content

Commit

Permalink
FIX: Missing runtimeerror catch.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Mar 27, 2024
1 parent b29eac3 commit 06fcfed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils/test_io_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import moviepy.video.io.ImageSequenceClip # noqa

MOVIEPY_AVAILABLE = True
except ImportError:
except (ImportError, RuntimeError):
MOVIEPY_AVAILABLE = False


Expand Down

0 comments on commit 06fcfed

Please sign in to comment.