Show More
@@ -336,10 +336,9 b' def _checkcollision(repo, wmf, mresult):' | |||||
336 | for f in pmmf: |
|
336 | for f in pmmf: | |
337 | fold = util.normcase(f) |
|
337 | fold = util.normcase(f) | |
338 | if fold in foldmap: |
|
338 | if fold in foldmap: | |
339 | raise error.StateError( |
|
339 | msg = _(b"case-folding collision between %s and %s") | |
340 | _(b"case-folding collision between %s and %s") |
|
340 | msg %= (f, foldmap[fold]) | |
341 | % (f, foldmap[fold]) |
|
341 | raise error.StateError(msg) | |
342 | ) |
|
|||
343 | foldmap[fold] = f |
|
342 | foldmap[fold] = f | |
344 |
|
343 | |||
345 | # check case-folding of directories |
|
344 | # check case-folding of directories |
General Comments 0
You need to be logged in to leave comments.
Login now