tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 22 Jul 2018 19:43:57 +0900
changeset 38920 dec16c0cce50
parent 30876 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
fileset: move copy constructor of matchctx near __init__

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)