Skip to content

Commit 4c6996e

Browse files
committed
Fix: Correcting syntax issue in SConstruct
There is a compilation error found, when building this library using scons. Used the latest version of scons v4.9.0 and the python version 3.9.21
1 parent 1b11fd3 commit 4c6996e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ elif os.environ.has_key('BOOST_INCLUDES') and os.environ.has_key('BOOST_LIBS'):
3232
env['BOOST_INCLUDES'] = os.environ['BOOST_INCLUDES']
3333
env['BOOST_LIBS'] = os.environ['BOOST_LIBS']
3434
else:
35-
raise SCons.Errors.UserError, "Neither BOOST_ROOT, nor BOOST_INCLUDES + BOOST_LIBS was set!"
35+
raise SCons.Errors.UserError("Neither BOOST_ROOT, nor BOOST_INCLUDES + BOOST_LIBS was set!")
3636

3737
## Custom OpenSSL
3838
if os.environ.has_key('OPENSSL_PATH'):

0 commit comments

Comments
 (0)