tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 13 Jan 2018 13:41:11 +0900
changeset 35624 188b1371d1ed
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
lfs: convert EOL of hgrc before appending to bytes IO Text IO is useless on Python 3 as it must be a unicode stream.

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)