mirror of
https://github.com/facebook/sapling.git
synced 2024-12-26 22:47:26 +03:00
ab3a7cb21f
Summary: In preparation for merging fb-mercurial sources to the Eden repository, move everything from the top-level directory into an `eden/scm` subdirectory.
13 lines
303 B
Python
13 lines
303 B
Python
from __future__ import absolute_import
|
|
|
|
from edenscm.mercurial import changegroup, error, extensions
|
|
from edenscm.mercurial.i18n import _
|
|
|
|
|
|
def abort(orig, *args, **kwargs):
|
|
raise error.Abort(_("this is an exercise"))
|
|
|
|
|
|
def uisetup(ui):
|
|
extensions.wrapfunction(changegroup, "getbundler", abort)
|