comparison mercurial/transaction.py @ 43050:a614f26d4897

transaction: re-wrap line to avoid a black bug Differential Revision: https://phab.mercurial-scm.org/D6970
author Augie Fackler <augie@google.com>
date Sat, 05 Oct 2019 09:57:00 -0400
parents 8502f76dbfd7
children 2372284d9457
comparison
equal deleted inserted replaced
43049:6e8582ccf76d 43050:a614f26d4897
331 any = True 331 any = True
332 order, filenames, genfunc, location = entry 332 order, filenames, genfunc, location = entry
333 333
334 # for generation at closing, check if it's before or after finalize 334 # for generation at closing, check if it's before or after finalize
335 postfinalize = group == gengrouppostfinalize 335 postfinalize = group == gengrouppostfinalize
336 if (group != gengroupall and 336 if (
337 (id in postfinalizegenerators) != (postfinalize)): 337 group != gengroupall
338 and (id in postfinalizegenerators) != postfinalize
339 ):
338 continue 340 continue
339 341
340 vfs = self._vfsmap[location] 342 vfs = self._vfsmap[location]
341 files = [] 343 files = []
342 try: 344 try: