tests/crashgetbundler.py
author Augie Fackler <augie@google.com>
Fri, 07 Sep 2018 11:35:43 -0400
changeset 39484 164abbe9d8ee
parent 30876 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
merge with stable

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)