From 7c368533139bfc9603f7d2a088ad857e8989d0d2 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 11 Oct 2010 21:03:10 +0200 Subject: selftest: Avoid check_call(), use call() instead. This should fix Python2.4 compatibility. --- source4/selftest/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4') diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index da5df978b1..3d3ac34209 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -146,7 +146,7 @@ if sub.returncode != 0: else: tap2subunit = "tap2subunit" -subprocess.check_call([smb4torture, "-V"]) +subprocess.call([smb4torture, "-V"]) bbdir = "../testprogs/blackbox" -- cgit