tests/crashgetbundler.py
author Jun Wu <quark@fb.com>
Sun, 26 Mar 2017 20:21:32 -0700
changeset 31680 448889f9a36c
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
rcutil: split osrcpath to return default.d paths (API) After this change, there are 3 rcpath functions: - defaultrcpath - systemrcpath - userrcpath This will allow us to insert another config layer in the middle.

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)