# HG changeset patch # User Augie Fackler # Date 1570283820 14400 # Node ID a614f26d4897c3f467efaf63172c2ffe5e26a4d5 # Parent 6e8582ccf76d7c2baa81950283aa1f63105fa79b transaction: re-wrap line to avoid a black bug Differential Revision: https://phab.mercurial-scm.org/D6970 diff -r 6e8582ccf76d -r a614f26d4897 mercurial/transaction.py --- a/mercurial/transaction.py Sat Oct 05 09:55:56 2019 -0400 +++ b/mercurial/transaction.py Sat Oct 05 09:57:00 2019 -0400 @@ -333,8 +333,10 @@ # for generation at closing, check if it's before or after finalize postfinalize = group == gengrouppostfinalize - if (group != gengroupall and - (id in postfinalizegenerators) != (postfinalize)): + if ( + group != gengroupall + and (id in postfinalizegenerators) != postfinalize + ): continue vfs = self._vfsmap[location]