Make gst-uninstalled compatible with python 3.3
authorThibault Saunier <thibault.saunier@osg.samsung.com>
Mon, 10 Oct 2016 23:58:05 +0000 (01:58 +0200)
committerThibault Saunier <thibault.saunier@osg.samsung.com>
Tue, 11 Oct 2016 00:00:32 +0000 (02:00 +0200)
gst-uninstalled.py

index 17b8f11..a6e1592 100755 (executable)
@@ -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)