diff options
author | Russel Winder <russel@winder.org.uk> | 2016-01-01 15:23:41 (GMT) |
---|---|---|
committer | Russel Winder <russel@winder.org.uk> | 2016-01-01 15:23:41 (GMT) |
commit | 7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb (patch) | |
tree | 5331118c851cdbc48ce2f983141ccd7c170e88f9 /test/CacheDir | |
parent | e9989979ac3411919935afe3a8c8c70ebbc4fd58 (diff) | |
download | SCons-7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb.zip SCons-7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb.tar.gz SCons-7b68ccb54e7b4d2200f8ac813eb6f8b2ae3654eb.tar.bz2 |
Some more print statements to functions.
Diffstat (limited to 'test/CacheDir')
-rw-r--r-- | test/CacheDir/scanner-target.py | 2 | ||||
-rw-r--r-- | test/CacheDir/source-scanner.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/CacheDir/scanner-target.py b/test/CacheDir/scanner-target.py index 645b597..c39042e 100644 --- a/test/CacheDir/scanner-target.py +++ b/test/CacheDir/scanner-target.py @@ -52,7 +52,7 @@ def docopy(target,source,env): f.close() def sillyScanner(node, env, dirs): - print 'This is never called (unless we build file.out)' + print('This is never called (unless we build file.out)') return [] SillyScanner = SCons.Scanner.Base(function = sillyScanner, skeys = ['.res']) diff --git a/test/CacheDir/source-scanner.py b/test/CacheDir/source-scanner.py index e7db5e9..2359872 100644 --- a/test/CacheDir/source-scanner.py +++ b/test/CacheDir/source-scanner.py @@ -54,7 +54,7 @@ def docopy(target,source,env): f.close() def sillyScanner(node, env, dirs): - print 'This is never called (unless we build file.out)' + print('This is never called (unless we build file.out)') return [] SillyScanner = SCons.Scanner.Base(function = sillyScanner, skeys = ['.res']) |