tests/crashgetbundler.py
author Ian Moody <moz-ian@perix.co.uk>
Sun, 12 Jun 2022 16:04:57 +0100
branchstable
changeset 49371 270f8e89ff32
parent 48966 6000f5b25c9b
permissions -rw-r--r--
py3: stop using deprecated Element.getchildren() method in convert/darcs This has been deprecated since py3.2, and removed entirely in py3.9

from mercurial.i18n import _
from mercurial import changegroup, error, extensions


def abort(orig, *args, **kwargs):
    raise error.Abort(_('this is an exercise'))


def uisetup(ui):
    extensions.wrapfunction(changegroup, 'getbundler', abort)