summaryrefslogtreecommitdiff
path: root/test/Deprecated
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2016-05-09 15:00:29 -0700
committerWilliam Deegan <bill@baddogconsulting.com>2016-05-09 15:00:29 -0700
commit62b73d1d06c8eb26e41f82c9e68bb22de948105a (patch)
tree3ab673ed90caaa0fcda93e164a9dd7aa1a2a3e37 /test/Deprecated
parentf15ba9a2385046ea56e600aac9bae1499db22879 (diff)
downloadscons-62b73d1d06c8eb26e41f82c9e68bb22de948105a.tar.gz
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 2b3ed47d..02afef18 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))