2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-17 01:32:12 +00:00

Minor stylistic change in the Boost Build test system.

[SVN r79036]
This commit is contained in:
Jurko Gospodnetić
2012-06-23 23:12:21 +00:00
parent 5bce542c2c
commit 0561f77b48

View File

@@ -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)