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