Closed lilaboc closed 5 months ago
Similar to #4
changing f.writelines(['{}\n'.format(l) for l in caption.lines])
f.writelines(['{}\n'.format(l) for l in caption.lines])
to
f.write('{}\n'.format(caption.text))
works for me
Hi @lilaboc 0.5.1 version is fixing this issue. Thanks.
Similar to #4
changing
f.writelines(['{}\n'.format(l) for l in caption.lines])
to
f.write('{}\n'.format(caption.text))
works for me