Show More
@@ -484,7 +484,7 b' def _matcher(canonroot, cwd, names, inc,' | |||||
484 | l = len(pats) |
|
484 | l = len(pats) | |
485 | if l < 2: |
|
485 | if l < 2: | |
486 | raise |
|
486 | raise | |
487 | a, b = matchfn(pats[:l/2], tail), matchfn(pats[l/2:], tail) |
|
487 | a, b = matchfn(pats[:l//2], tail), matchfn(pats[l//2:], tail) | |
488 | return lambda s: a(s) or b(s) |
|
488 | return lambda s: a(s) or b(s) | |
489 | except re.error: |
|
489 | except re.error: | |
490 | for k, p in pats: |
|
490 | for k, p in pats: |
General Comments 0
You need to be logged in to leave comments.
Login now