From c514f7fffb3a808ef0d2da44766fa0d802a4155f Mon Sep 17 00:00:00 2001 From: j Date: Sat, 24 Jan 2026 13:30:38 +0100 Subject: [PATCH] fix typo --- render_sound.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render_sound.py b/render_sound.py index 8fb66bc..a09e1a9 100644 --- a/render_sound.py +++ b/render_sound.py @@ -11,11 +11,11 @@ from .render import default_prefix as root from .render import load_defaults def render_all(options): - if os.path.exists(os.path.join(root, "render/forest-5.1.mp4"): + if os.path.exists(os.path.join(root, "render/forest-5.1.mp4")): print("forest-5.1.mp4 exists, skipping") else: render_forest() - if os.path.exists(os.path.join(root, "render/music-5.1.mp4"): + if os.path.exists(os.path.join(root, "render/music-5.1.mp4")): print("music-5.1.mp4 exists, skipping") else: render_music()