diff options
author | William Deegan <bill@baddogconsulting.com> | 2022-08-15 22:56:39 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2022-08-15 22:56:39 (GMT) |
commit | 0a482919aa521a45abab2fb77f7474151a9f4b82 (patch) | |
tree | e83603bd148e3e55f44c21f9be20d4d758130902 /SCons/__init__.py | |
parent | 18745cfc5e75df8028682183097202f926e22134 (diff) | |
download | SCons-0a482919aa521a45abab2fb77f7474151a9f4b82.zip SCons-0a482919aa521a45abab2fb77f7474151a9f4b82.tar.gz SCons-0a482919aa521a45abab2fb77f7474151a9f4b82.tar.bz2 |
Added throw_exception parameter to ValidateOptions() which allows you to select either have ValidateOptions() issue error message and exit,or throw an exception and then you can handle it your own way. per dmoody's sugguestion
Diffstat (limited to 'SCons/__init__.py')
-rw-r--r-- | SCons/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/SCons/__init__.py b/SCons/__init__.py index dc8a9c0..de64c52 100644 --- a/SCons/__init__.py +++ b/SCons/__init__.py @@ -1,9 +1,9 @@ __version__="4.4.1" __copyright__="Copyright (c) 2001 - 2022 The SCons Foundation" __developer__="bdbaddog" -__date__="Sat, 13 Aug 2022 15:38:28 -0700" +__date__="Mon, 15 Aug 2022 11:59:33 -0700" __buildsys__="M1Dog2021" -__revision__="c7deb78684a518c59ed05c40bef266e9d27a9957" -__build__="c7deb78684a518c59ed05c40bef266e9d27a9957" +__revision__="18745cfc5e75df8028682183097202f926e22134" +__build__="18745cfc5e75df8028682183097202f926e22134" # make sure compatibility is always in place import SCons.compat # noqa
\ No newline at end of file |