tests/crashgetbundler.py
author Augie Fackler <augie@google.com>
Sat, 13 Oct 2018 09:47:53 -0400
changeset 40264 12e2e5cd5777
parent 30914 f3807a135e43
child 43076 2372284d9457
permissions -rw-r--r--
churn: remove redundant round() To my surprise, the int() is required. Spotted by Mads when he reviewed D5063. Thanks! Differential Revision: https://phab.mercurial-scm.org/D5086

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)