tests/crashgetbundler.py
author Augie Fackler <augie@google.com>
Tue, 18 May 2021 13:34:06 -0400
changeset 47302 338623a2ebf2
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
hghave: make error output easier to diagnose I had a typo that meant the new bash check was throwing an exception (due to a missing argument), but it was very hard to diagnose without this change. Differential Revision: https://phab.mercurial-scm.org/D10733

from __future__ import absolute_import

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)