From 42828672b33f3d0fa495b95f02422dafcd8b4993 Mon Sep 17 00:00:00 2001 From: Joseph Brill <48932340+jcbrill@users.noreply.github.com> Date: Sun, 15 Oct 2023 13:17:11 -0400 Subject: Remove redundant os.path.normcase invocation in SCons/Tool/MSCommon/MSVC/UtilTests.py. --- SCons/Tool/MSCommon/MSVC/UtilTests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/Tool/MSCommon/MSVC/UtilTests.py b/SCons/Tool/MSCommon/MSVC/UtilTests.py index d92d2ca..86ea58d 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: -- cgit v0.12