diff options
Diffstat (limited to 'scons/dxsdk.py')
-rw-r--r-- | scons/dxsdk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scons/dxsdk.py b/scons/dxsdk.py index 920cc2f689d..9657f58f4d2 100644 --- a/scons/dxsdk.py +++ b/scons/dxsdk.py @@ -51,7 +51,7 @@ def generate(env): elif env['machine'] == 'x86_64': target_cpu = 'x64' else: - raise SCons.Errors.InternalError, "Unsupported target machine" + raise SCons.Errors.InternalError("Unsupported target machine") include_dir = os.path.join(dxsdk_root, 'Include') lib_dir = os.path.join(dxsdk_root, 'Lib', target_cpu) |