diff options
Diffstat (limited to 'test/toolpath/relative_import/image/SConstruct')
-rw-r--r-- | test/toolpath/relative_import/image/SConstruct | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/toolpath/relative_import/image/SConstruct b/test/toolpath/relative_import/image/SConstruct index 6156929..c9b28bb 100644 --- a/test/toolpath/relative_import/image/SConstruct +++ b/test/toolpath/relative_import/image/SConstruct @@ -1,10 +1,10 @@ env = Environment(tools=['TestTool1', 'TestTool1.TestTool1_2'], toolpath=['tools'])
# Test a relative import within the root of the tools directory
-print("env['TestTool1'] =", env.get('TestTool1'))
-print("env['TestTool1_1'] =", env.get('TestTool1_1'))
+print("env['TestTool1'] = %s"%env.get('TestTool1'))
+print("env['TestTool1_1'] = %s"%env.get('TestTool1_1'))
# Test a relative import within a sub dir
-print("env['TestTool1_2'] =", env.get('TestTool1_2'))
-print("env['TestTool1_2_1'] =", env.get('TestTool1_2_1'))
-print("env['TestTool1_2_2'] =", env.get('TestTool1_2_2'))
+print("env['TestTool1_2'] = %s"%env.get('TestTool1_2'))
+print("env['TestTool1_2_1'] = %s"%env.get('TestTool1_2_1'))
+print("env['TestTool1_2_2'] = %s"%env.get('TestTool1_2_2'))
|