view tests/crashgetbundler.py @ 35696:925107e37619

http: add a debug version of the push test This will be useful to test further debugging capabilities in coming changesets.
author Boris Feld <boris.feld@octobus.net>
date Fri, 12 Jan 2018 10:57:29 +0000
parents f3807a135e43
children 2372284d9457
line wrap: on
line source

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)