Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SCons/scons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Brill <48932340+jcbrill@users.noreply.github.com>2023-10-15 20:17:11 +0300
committerJoseph Brill <48932340+jcbrill@users.noreply.github.com>2023-10-15 20:17:11 +0300
commit42828672b33f3d0fa495b95f02422dafcd8b4993 (patch)
tree572784ede0bdc679b0eeaa69679c074c24bd3b28
parent4c5a68ff03ff907c8a646492e3ca4997c9e1dceb (diff)
Remove redundant os.path.normcase invocation in SCons/Tool/MSCommon/MSVC/UtilTests.py.
-rw-r--r--SCons/Tool/MSCommon/MSVC/UtilTests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/SCons/Tool/MSCommon/MSVC/UtilTests.py b/SCons/Tool/MSCommon/MSVC/UtilTests.py
index d92d2ca5c..86ea58d87 100644
--- a/SCons/Tool/MSCommon/MSVC/UtilTests.py
+++ b/SCons/Tool/MSCommon/MSVC/UtilTests.py
@@ -44,7 +44,7 @@ def normalize(*comps):
p = os.path.join(*comps)
p = os.path.normpath(p)
p = os.path.normcase(p)
- return os.path.normcase(p)
+ return p
class Data: