tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 05 Aug 2018 16:33:30 +0900
changeset 39398 3cd977d5a16b
parent 30876 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
templatekw: add {path} keyword to host documentation It's hidden since I'm not sure if filectx templates can be a thing. The plan is to add {status}, {size}, etc., which are usable within {files % ...} context.

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)