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.
17 lines
483 B
Python
17 lines
483 B
Python
# Copyright 2017 Facebook, Inc.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2 or any later version.
|
|
|
|
from edenscm.mercurial import bundlerepo, extensions
|
|
from edenscm.mercurial.i18n import _
|
|
|
|
|
|
def extsetup(ui):
|
|
extensions.wrapfunction(bundlerepo.bundlerepository, "__init__", _init)
|
|
|
|
|
|
def _init(orig, self, ui, *args, **kwargs):
|
|
ui.warn(_("creating bundlerepo"))
|
|
return orig(self, ui, *args, **kwargs)
|