##// END OF EJS Templates
icasefs: disuse length check against un-normcase()-ed filenames...
FUJIWARA Katsunori -
r15718:c604a3d1 default
parent child Browse files
Show More
@@ -622,9 +622,8 b' def fspath(name, root):'
622 The root should be normcase-ed, too.
622 The root should be normcase-ed, too.
623 '''
623 '''
624 def find(p, contents):
624 def find(p, contents):
625 lenp = len(p)
626 for n in contents:
625 for n in contents:
627 if lenp == len(n) and normcase(n) == p:
626 if normcase(n) == p:
628 return n
627 return n
629 return None
628 return None
630
629
General Comments 0
You need to be logged in to leave comments. Login now