diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2020-06-27 12:28:42 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2020-06-27 12:28:42 (GMT) |
commit | 3327dd6a6f4345607f9a72eaed59f74b06c39d25 (patch) | |
tree | 3658256a6a94efc785a4441405a500abb3978955 | |
parent | e4fdc10cad4060c740763148699131be2dae3b96 (diff) | |
download | SCons-3327dd6a6f4345607f9a72eaed59f74b06c39d25.zip SCons-3327dd6a6f4345607f9a72eaed59f74b06c39d25.tar.gz SCons-3327dd6a6f4345607f9a72eaed59f74b06c39d25.tar.bz2 |
Swap the argument order for DummyVsWhere to match the signature of find_vc_pdir_vswhere in vc.py.
-rw-r--r-- | test/fixture/no_msvc/no_msvcs_sconstruct.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/fixture/no_msvc/no_msvcs_sconstruct.py b/test/fixture/no_msvc/no_msvcs_sconstruct.py index 11a06ac..18366d8 100644 --- a/test/fixture/no_msvc/no_msvcs_sconstruct.py +++ b/test/fixture/no_msvc/no_msvcs_sconstruct.py @@ -1,7 +1,7 @@ import SCons import SCons.Tool.MSCommon -def DummyVsWhere(env, msvc_version): +def DummyVsWhere(msvc_version, env): # not testing versions with vswhere, so return none return None |