Submitter | phabricator |
---|---|
Date | Oct. 5, 2019, 2:19 p.m. |
Message ID | <c55c5f86a3d948e6f1d23c49a7138480@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41975/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/transaction.py b/mercurial/transaction.py --- a/mercurial/transaction.py +++ b/mercurial/transaction.py @@ -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]