tests/crashgetbundler.py
author Yuya Nishihara <yuya@tcha.org>
Fri, 31 Aug 2018 21:44:24 +0900
branchstable
changeset 39416 ede3bf31fe63
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
hgweb: load revcount + 1 entries to fill nextentry in log page (issue5972) "revcount + 1" is moved to the call site to make it clearer.

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)