From 0561f77b48c4e3dee86b9c2e14d05ed44544efff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 23 Jun 2012 23:12:21 +0000 Subject: [PATCH] Minor stylistic change in the Boost Build test system. [SVN r79036] --- v2/test/BoostBuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/test/BoostBuild.py b/v2/test/BoostBuild.py index c6701a6ef..0c4cf2821 100644 --- a/v2/test/BoostBuild.py +++ b/v2/test/BoostBuild.py @@ -797,7 +797,7 @@ class Tester(TestCmd.TestCmd): open(e, "w").write(expected) open(a, "w").write(actual) print "DIFFERENCE" - if os.system("diff -u " + e + " " + a): + if os.system("diff -u %s %s" % (e, a)): print "Unable to compute difference: diff -u %s %s" % (e, a) os.unlink(e) os.unlink(a)