From 6020b81c8d39bfdb112fa422dbdddf37082ffae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sun, 17 Jun 2012 14:44:41 +0000 Subject: [PATCH] Corrected a slight error reporting defect in the Boost Build's unit-testing system. [SVN r78974] --- test/BoostBuild.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/BoostBuild.py b/test/BoostBuild.py index babe0dab1..4e9e39f8a 100644 --- a/test/BoostBuild.py +++ b/test/BoostBuild.py @@ -441,9 +441,8 @@ class Tester(TestCmd.TestCmd): try: if os.path.isabs(subdir): - if stderr: - print "You must pass a relative directory to subdir <"+subdir+">." - status = 1 + print("You must pass a relative directory to subdir <%s>." % + subdir) return self.previous_tree = tree.build_tree(self.workdir)