tests/crashgetbundler.py
author Raphaël Gomès <rgomes@octobus.net>
Fri, 23 Feb 2024 15:57:50 +0100
changeset 51443 69ad1d1d9947
parent 48875 6000f5b25c9b
permissions -rw-r--r--
branching: merge stable into default

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)