diff --git a/make-adobe-after-effects.py b/make-adobe-after-effects.py index 8972eca..2bc9690 100755 --- a/make-adobe-after-effects.py +++ b/make-adobe-after-effects.py @@ -152,13 +152,13 @@ for event in events: if args.ids and event['id'] not in args.ids: continue + event_print(event, "enqueued as "+str(event['id'])) + job_id = enqueue_job(event) if not job_id: event_print(event, "job was not enqueued successfully, skipping postprocessing") continue - event_print(event, "enqueued as "+job_id) - event_print(event, "finalizing job") finalize_job(job_id, event)