From 0a4309ab7730e466e415c882dcca2e8c1b0afd80 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 26 Dec 2018 18:10:10 -0800 Subject: [PATCH] Update edl2scenelist.py Ooops typos --- bin/edl2scenelist.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/edl2scenelist.py b/bin/edl2scenelist.py index 5aa5d52..4d43b1e 100644 --- a/bin/edl2scenelist.py +++ b/bin/edl2scenelist.py @@ -30,9 +30,10 @@ def output_cmx(outfile, out_list): outfile.write(line) outfile.write("* FROM CLIP NAME: %s\r\n" % (o['scene']) ) + def output_cols(outfile, out_list): for o in out_list: - outfile.write("%15s %15s %s\n" (o['start'], o['end'], o['scene'] ) + outfile.write("%-12s\t%-12s\t%s\n" % (o['start'], o['end'], o['scene'] )) def scene_list(infile, outfile, out_format, pattern):