Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.

Commit 129a948

Browse files
committed
Revert "Replace Popen with check_call"
This reverts commit 34a99fd.
1 parent 34a99fd commit 129a948

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

mpv-pipe

Whitespace-only changes.

playphrase.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def play_clips(clips, ending_mode, mpv_options):
238238
with open(pipe_name, 'w'): # create pipe
239239
pass
240240

241-
p = subprocess.check_call(cmd) # start mpv player in idle mode
241+
p = subprocess.Popen(cmd) # start mpv player in idle mode
242242

243243
with open(pipe_name, "wb", 0) as f_pipe:
244244
for clip_filename, clip_start, clip_end in clips:

0 commit comments

Comments
 (0)