From b233fd743c1fcba0b8f83f3405041fc2dbac83d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Sat, 9 Jun 2012 22:58:35 +0000 Subject: [PATCH] Minor stylistic configuration.py Boost Build test changes. [SVN r78864] --- v2/test/configuration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2/test/configuration.py b/v2/test/configuration.py index 0be74e51a..d8cc61e79 100755 --- a/v2/test/configuration.py +++ b/v2/test/configuration.py @@ -43,14 +43,14 @@ def test_user_configuration(): # Prepare a dummy toolset so we do not get errors in case the default one is # not found. - t.write(toolsetName + ".jam", """ + t.write(toolsetName + ".jam", """\ import feature ; feature.extend toolset : %s ; rule init ( ) { } """ % toolsetName ) # Python version of the same dummy toolset. - t.write(toolsetName + ".py", """ + t.write(toolsetName + ".py", """\ from b2.build import feature feature.extend('toolset', ['%s']) def init(): pass