diff --git a/render.py b/render.py index 75e95f9..5223279 100644 --- a/render.py +++ b/render.py @@ -444,7 +444,7 @@ def render_all(options): for fragment in fragments: fragment_base += 1 fragment_id = int(fragment['name'].split(' ')[0]) - if options["fragment"] and int(options["fragment"]) != fragment_id: + if options.get("fragment") and int(options["fragment"]) != fragment_id: continue name = fragment['name'].replace(' ', '_') if not fragment['clips']: