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