##// END OF EJS Templates
verify: use some intermediate variables instead of a multi-liner...
marmoute -
r48151:fb438539 default
parent child Browse files
Show More
@@ -345,9 +345,8 b' class verifier(object):'
345 345 if fl == b't':
346 346 if not match.visitdir(fullpath):
347 347 continue
348 subdirnodes.setdefault(fullpath + b'/', {}).setdefault(
349 fn, []
350 ).append(lr)
348 sdn = subdirnodes.setdefault(fullpath + b'/', {})
349 sdn.setdefault(fn, []).append(lr)
351 350 else:
352 351 if not match(fullpath):
353 352 continue
General Comments 0
You need to be logged in to leave comments. Login now