diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2015-12-16 15:31:33 -0800 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2015-12-16 15:31:33 -0800 |
commit | 68016a1f3ce07b2738ba207033f1e62eed0a28a8 (patch) | |
tree | 79bcb1d7f83a95932cc1b3b4d098a0dcc2259317 | |
parent | e4a6918a41c8d792ddbd1c7e7511670e3b09480a (diff) |
fix build_step_environ()
-rwxr-xr-x | tools/run_tests/run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/run_tests.py b/tools/run_tests/run_tests.py index 8e8a05ed08..07570262b2 100755 --- a/tools/run_tests/run_tests.py +++ b/tools/run_tests/run_tests.py @@ -751,7 +751,7 @@ for l in languages: def build_step_environ(cfg): environ = {'CONFIG': cfg} - msbuild_cfg = _WINDOWS_CONFIG[cfg] + msbuild_cfg = _WINDOWS_CONFIG.get(cfg) if msbuild_cfg: environ['MSBUILD_CONFIG'] = msbuild_cfg return environ |