Submitter | Manuel Jacob |
---|---|
Date | July 2, 2020, 12:52 a.m. |
Message ID | <97cae21cfbb7ba5ea6e8.1593651144@tmp.fritz.box> |
Download | mbox | patch |
Permalink | /patch/46610/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/cmdutil.py b/mercurial/cmdutil.py --- a/mercurial/cmdutil.py +++ b/mercurial/cmdutil.py @@ -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