From d37f4a041f58957b728df17c51d1933a73defbf9 Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 15 Oct 2020 15:59:10 +0200 Subject: [PATCH] formatting changes --- pype/scripts/otio_burnin.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pype/scripts/otio_burnin.py b/pype/scripts/otio_burnin.py index 704a08ccbe..5ff8c5a766 100644 --- a/pype/scripts/otio_burnin.py +++ b/pype/scripts/otio_burnin.py @@ -302,8 +302,9 @@ class ModifiedBurnins(ffmpeg_burnins.Burnins): proc = subprocess.Popen(command, shell=True) print(proc.communicate()[0]) if proc.returncode != 0: - raise RuntimeError("Failed to render '%s': %s'" - % (output, command)) + raise RuntimeError( + "Failed to render '{}': {}'".format(output, command) + ) if is_sequence: output = output % kwargs.get("duration")