[Request] [+ ] D12108: merge: break up a not-so-one-liner for readability
marmoute (Pierre-Yves David)
phabricator at mercurial-scm.org
Sat Jan 29 14:14:58 UTC 2022
marmoute created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D12108
AFFECTED FILES
mercurial/merge.py
CHANGE DETAILS
diff --git a/mercurial/merge.py b/mercurial/merge.py
--- a/mercurial/merge.py
+++ b/mercurial/merge.py
@@ -1927,10 +1927,9 @@
raise error.Abort(m_a)
elif pas == [p1]:
if not mergeancestor and wc.branch() == p2.branch():
- raise error.Abort(
- _(b"nothing to merge"),
- hint=_(b"use 'hg update' or check 'hg heads'"),
- )
+ msg = _(b"nothing to merge")
+ hint = _(b"use 'hg update' or check 'hg heads'")
+ raise error.Abort(msg, hint=hint)
if not force and (wc.files() or wc.deleted()):
raise error.StateError(
_(b"uncommitted changes"),
To: marmoute, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20220129/9bbb07dd/attachment.html>
More information about the Mercurial-patches
mailing list