From dd35ec3ddd57c376ad8a80df8d872bf3eb6a3123 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Fri, 4 Nov 2022 11:14:55 +0100 Subject: [PATCH] gst-env: import exit from sys On windows the Cmd Prompt for VS 2019 complains that exit is not defined. File "C:/data/gstreamer/gst-env.py", line 622, in exit(subprocess.call(args, close_fds=False, env=env)) NameError: name 'exit' is not defined Part-of: --- gst-env.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gst-env.py b/gst-env.py index ae03246bde..fb266adad3 100755 --- a/gst-env.py +++ b/gst-env.py @@ -14,6 +14,7 @@ import pathlib import signal from functools import lru_cache from pathlib import PurePath, Path +from sys import exit from typing import Any