From b33e6c6dda08a0a142a104e888dd7ec3e8907692 Mon Sep 17 00:00:00 2001 From: Terry Geng Date: Sat, 25 Apr 2020 09:11:58 +0800 Subject: [PATCH] fix: include "openbsd" in pipe_no_wait, fixed #116 --- util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.py b/util.py index 1116944..184ea12 100644 --- a/util.py +++ b/util.py @@ -167,7 +167,7 @@ def pipe_no_wait(): """ Generate a non-block pipe used to fetch the STDERR of ffmpeg. """ - if platform == "linux" or platform == "linux2" or platform == "darwin": + if platform == "linux" or platform == "linux2" or platform == "darwin" or platform.startswith("openbsd"): import fcntl import os