Skip to content

Commit

Permalink
Remove redundant os.path.normcase invocation in SCons/Tool/MSCommon/M…
Browse files Browse the repository at this point in the history
…SVC/UtilTests.py.
  • Loading branch information
jcbrill committed Oct 15, 2023
1 parent 4c5a68f commit 4282867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SCons/Tool/MSCommon/MSVC/UtilTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 4282867

Please sign in to comment.