changeset 45036 | c05ac059749f |
parent 44861 | 065421e12248 |
child 45037 | 0c40d2d151cb |
--- a/mercurial/cmdutil.py Fri Jul 03 13:45:59 2020 +0530 +++ b/mercurial/cmdutil.py Thu Jul 02 02:46:15 2020 +0200 @@ -3437,9 +3437,9 @@ not opts.get(b'amend') and bheads and node not in bheads - and not [ - x for x in parents if x.node() in bheads and x.branch() == branch - ] + and not any( + x.node() in bheads and x.branch() == branch for x in parents + ) ): repo.ui.status(_(b'created new head\n')) # The message is not printed for initial roots. For the other