tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Tue, 16 Oct 2018 12:39:21 +0200
changeset 40309 1bd3e922de18
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
check-commit: update test expectation per removal of "double empty line" rule Follow up for 47084b5ffd80.

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)