# HG changeset patch # User Pierre-Yves David # Date 1643376332 -3600 # Node ID 58a2c66fa94c83e3f93befe417d4a3d6c58ab694 # Parent 6c4b10d01af0c3b762e7de9c6b79d83ed83f3240 merge: break up a not-so-one-liner for readability Differential Revision: https://phab.mercurial-scm.org/D12107 diff -r 6c4b10d01af0 -r 58a2c66fa94c mercurial/merge.py --- a/mercurial/merge.py Fri Jan 28 14:25:05 2022 +0100 +++ b/mercurial/merge.py Fri Jan 28 14:25:32 2022 +0100 @@ -1922,13 +1922,9 @@ hint = _(b"use 'hg resolve' to resolve") raise error.StateError(msg, hint=hint) if branchmerge: + m_a = _(b"merging with a working directory ancestor has no effect") if pas == [p2]: - raise error.Abort( - _( - b"merging with a working directory ancestor" - b" has no effect" - ) - ) + raise error.Abort(m_a) elif pas == [p1]: if not mergeancestor and wc.branch() == p2.branch(): raise error.Abort(