diff options
| author | William Blevins <wblevins001@gmail.com> | 2016-01-24 16:36:12 (GMT) |
|---|---|---|
| committer | William Blevins <wblevins001@gmail.com> | 2016-01-24 16:36:12 (GMT) |
| commit | 36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078 (patch) | |
| tree | 9d10b6f009624a613c6a78b71736d0416849f329 /test/Variables/PackageVariable.py | |
| parent | 358c0de48a7d9fecdb30e24505c066506dfcdeff (diff) | |
| download | SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.zip SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.tar.gz SCons-36d36e8dbf9e43c412f7a52a38dc1f9d9e8bb078.tar.bz2 | |
Resolving a batch of failing tests for python 2.7.
Note: please evaluate python 3.X compliance.
Diffstat (limited to 'test/Variables/PackageVariable.py')
| -rw-r--r-- | test/Variables/PackageVariable.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Variables/PackageVariable.py b/test/Variables/PackageVariable.py index 322bc9b..b3fd10a 100644 --- a/test/Variables/PackageVariable.py +++ b/test/Variables/PackageVariable.py @@ -59,7 +59,7 @@ opts.AddVariables( env = Environment(variables=opts) Help(opts.GenerateHelpText(env)) -print env['x11'] +print(env['x11']) Default(env.Alias('dummy', None)) """) |
