view tests/crashgetbundler.py @ 35156:e46f0b653002

hgweb: remove unused Graph() properties Both of these were introduced in 0dba955c2636, but were already unused.
author Anton Shestakov <av6@dwimlabs.net>
date Sat, 25 Nov 2017 16:01:27 +0800
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)