tests/crashgetbundler.py
author Denis Laxalde <denis@laxalde.org>
Mon, 21 Oct 2019 11:32:54 +0200
branchstable
changeset 43312 734407c4568a
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
packaging: fix path where .deb files are looked for In builddeb script, the path where .deb files are looked for should simply be $OUTPUTDIR since the previous instruction moves those files there. This fixes "make deb".

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)