Skip to content

Commit a2f9b4c

Browse files
committed
ffmpeg_editlist: sections can have § anywhere in their names
1 parent fb9f6ac commit a2f9b4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ffmpeg_editlist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def main(argv=sys.argv[1:]):
446446
#print('TOC', start, title, segment)
447447
TOC.append((segment_number, seconds(time), title))
448448

449-
if title.startswith('§'):
449+
if '§' in title:
450450
schedule(time, f'. **{title}**')
451451
else:
452452
schedule(time, f'. . {title}')

0 commit comments

Comments
 (0)