Update edl2scenelist.py

Ooops typos
This commit is contained in:
Jamie Hardt
2018-12-26 18:10:10 -08:00
parent 50fea58724
commit 0a4309ab77

View File

@@ -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):