Skip to content

Commit 1adf562

Browse files
committed
Merge branch 'development' into experimental
2 parents cd45918 + 1951f37 commit 1adf562

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

master_openworm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def execute_with_realtime_output(command, directory, env=None):
279279
black_dur = float(out[black_dur_pos + len("black_duration:") :])
280280

281281
if black_start == 0.0 and black_dur:
282-
black_dur = int(math.ceil(black_dur))
282+
black_dur = math.ceil(black_dur)
283283
command = "ffmpeg -ss 00:00:0%s -i %s/%s -c copy -avoid_negative_ts 1 %s/cut_%s" % (
284284
black_dur,
285285
new_sim_out,

0 commit comments

Comments
 (0)