summaryrefslogtreecommitdiffstats
path: root/test/Deprecated
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-05-09 22:00:29 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2016-05-09 22:00:29 (GMT)
commit1268203d907a4f653abd2f40299490fca9fc5874 (patch)
tree3ab673ed90caaa0fcda93e164a9dd7aa1a2a3e37 /test/Deprecated
parent70f4e3f26156b33f465fa12ec87b50c5b8f784e4 (diff)
downloadSCons-1268203d907a4f653abd2f40299490fca9fc5874.zip
SCons-1268203d907a4f653abd2f40299490fca9fc5874.tar.gz
SCons-1268203d907a4f653abd2f40299490fca9fc5874.tar.bz2
Fix missing right parent in print () function in generated SConstruct.
Diffstat (limited to 'test/Deprecated')
-rw-r--r--test/Deprecated/Options/EnumOption.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Deprecated/Options/EnumOption.py b/test/Deprecated/Options/EnumOption.py
index 2b3ed47..02afef1 100644
--- a/test/Deprecated/Options/EnumOption.py
+++ b/test/Deprecated/Options/EnumOption.py
@@ -43,6 +43,7 @@ def check(expect):
test.write(SConstruct_path, """\
+
from SCons.Options.EnumOption import EnumOption
EO = EnumOption
@@ -67,7 +68,7 @@ env = Environment(options=opts)
Help(opts.GenerateHelpText(env))
print(env['debug'])
-print(env['guilib']
+print(env['guilib'])
print(env['some'])
Default(env.Alias('dummy', None))