tests/crashgetbundler.py
author Augie Fackler <augie@google.com>
Mon, 16 Oct 2017 22:50:39 -0400
changeset 34808 e87e62b7fc0b
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
templater: don't blow up when trying to build an abort message __name__ is unicode, but we need bytes. For now, we'll make the (mostly-safe) assumption that template filter names will be ascii. Differential Revision: https://phab.mercurial-scm.org/D1137

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)