Mercurial > hg
view tests/crashgetbundler.py @ 49281:223d55086d7c
cleanup: rename some functions to avoid redefinitions
author | Manuel Jacob <me@manueljacob.de> |
---|---|
date | Sun, 29 May 2022 12:25:24 +0200 |
parents | 6000f5b25c9b |
children |
line wrap: on
line source
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)