view tests/crashgetbundler.py @ 45248:4cde23ba076e

commitctx: create the new extra dict on its own line A trivial move to make the next changeset easier to read.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Sat, 25 Jul 2020 14:59:55 +0200
parents 2372284d9457
children 6000f5b25c9b
line wrap: on
line source

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)