##// END OF EJS Templates
fsmonitor: use next() instead of .next()...
Gregory Szorc -
r43714:2b5aab5e stable
parent child Browse files
Show More
@@ -504,9 +504,9 b' def overridewalk(orig, self, match, subr'
504 504 for f in auditfail:
505 505 results[f] = None
506 506
507 nf = iter(auditpass).next
507 nf = iter(auditpass)
508 508 for st in util.statfiles([join(f) for f in auditpass]):
509 f = nf()
509 f = next(nf)
510 510 if st or f in dmap:
511 511 results[f] = st
512 512
General Comments 0
You need to be logged in to leave comments. Login now