##// END OF EJS Templates
transaction: re-wrap line to avoid a black bug...
Augie Fackler -
r43320:a614f26d default
parent child Browse files
Show More
@@ -333,8 +333,10 b' class transaction(util.transactional):'
333 333
334 334 # for generation at closing, check if it's before or after finalize
335 335 postfinalize = group == gengrouppostfinalize
336 if (group != gengroupall and
337 (id in postfinalizegenerators) != (postfinalize)):
336 if (
337 group != gengroupall
338 and (id in postfinalizegenerators) != postfinalize
339 ):
338 340 continue
339 341
340 342 vfs = self._vfsmap[location]
General Comments 0
You need to be logged in to leave comments. Login now