diff options
Diffstat (limited to 'test/scan-once.py')
-rw-r--r-- | test/scan-once.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/scan-once.py b/test/scan-once.py index fd50982..90af11e 100644 --- a/test/scan-once.py +++ b/test/scan-once.py @@ -69,7 +69,7 @@ XScanner = Scanner(name = 'XScanner', function = scan, argument = None, scan_check = exists_check, - skeys = ['.x']) + skeys = ['.x']) def echo(env, target, source): t = os.path.split(str(target[0]))[1] @@ -78,7 +78,7 @@ def echo(env, target, source): Echo = Builder(action = Action(echo, None), src_suffix = '.x', - suffix = '.x') + suffix = '.x') env = Environment(BUILDERS = {'Echo':Echo}, SCANNERS = [XScanner]) @@ -108,7 +108,7 @@ builders = Environment().Dictionary('BUILDERS') builders["StaticLibMerge"] = BStaticLibMerge env = Environment(BUILDERS = builders) -e = env.Dictionary() # Slightly easier to type +e = env.Dictionary() # Slightly easier to type global_env = env e["GlobalEnv"] = global_env |