mercurial/mergeutil.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 20 Jan 2021 12:11:41 +0100
branchstable
changeset 46341 043781c0ffd6
parent 45931 fa87536d3d70
child 46435 dfca84970da8
permissions -rw-r--r--
doc: remove the section about share-safe from its verbose gating The feature is no longer experimental. Differential Revision: https://phab.mercurial-scm.org/D9838

# mergeutil.py - help for merge processing in mercurial
#
# Copyright 2005-2007 Matt Mackall <mpm@selenic.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.

from __future__ import absolute_import

from .i18n import _

from . import error


def checkunresolved(ms):
    if list(ms.unresolved()):
        raise error.StateError(
            _(b"unresolved merge conflicts (see 'hg help resolve')")
        )