From 1b6d719d54ab2108c8642e51183c24b4cde2cae4 Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Tue, 11 Oct 2016 01:58:05 +0200 Subject: [PATCH] Make gst-uninstalled compatible with python 3.3 --- gst-uninstalled.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-uninstalled.py b/gst-uninstalled.py index 17b8f11..a6e1592 100755 --- a/gst-uninstalled.py +++ b/gst-uninstalled.py @@ -128,6 +128,6 @@ if __name__ == "__main__": args.append("--noprofile") try: - exit(subprocess.run(args, env=get_subprocess_env(options)).returncode) + exit(subprocess.call(args, env=get_subprocess_env(options))) except subprocess.CalledProcessError as e: exit(e.returncode) -- 2.7.4