tests/crashgetbundler.py
author Boris Feld <boris.feld@octobus.net>
Sat, 15 Jul 2017 23:30:25 +0200
changeset 33537 709dde1c5dd5
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
cachevfs: migration the tags fnode cache to 'cachevfs' This will help sharing the cache between shares.

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)