view tests/crashgetbundler.py @ 35941:3028a3215a2e

patches: move assignment outside the conditional Having this movement in its own patch will make the next patch clearer.
author Boris Feld <boris.feld@octobus.net>
date Tue, 06 Feb 2018 14:24:16 +0100
parents f3807a135e43
children 2372284d9457
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)