summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseph Brill <48932340+jcbrill@users.noreply.github.com>2020-06-27 12:28:42 (GMT)
committerJoseph Brill <48932340+jcbrill@users.noreply.github.com>2020-06-27 12:28:42 (GMT)
commit3327dd6a6f4345607f9a72eaed59f74b06c39d25 (patch)
tree3658256a6a94efc785a4441405a500abb3978955
parente4fdc10cad4060c740763148699131be2dae3b96 (diff)
downloadSCons-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.py2
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