tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 25 Feb 2017 18:41:00 +0900
changeset 31187 6b8e1a08ef1d
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
patchbomb: add config knob to generate flags by template (issue5354) This can be used to flag patches by branch or topic automatically. Flags optionally given by --flag option are exported as {flags} template keyword, so you can add --flag V2.

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)