view tests/crashgetbundler.py @ 49432:b4535c88a05b

phase-shelve: also capture the state of shelve prior to unshelve
author Jason R. Coombs <jaraco@jaraco.com>
date Wed, 17 Aug 2022 12:03:55 -0400
parents 6000f5b25c9b
children
line wrap: on
line source

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)