mercurial/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 14 Apr 2021 02:14:15 +0200
changeset 46932 dec31caf5fd6
parent 43106 d783f945a701
child 48966 6000f5b25c9b
permissions -rw-r--r--
incoming: use `urlutil.get_pull_paths` Lets use the new method to increase code reuse. However I did not implement support for multiple source yet. It would be possible create multiple temporary bundle, but that is a bit too much work outside of my current route to make the detour. Differential Revision: https://phab.mercurial-scm.org/D10392

# __init__.py - Startup and module loading logic for Mercurial.
#
# Copyright 2015 Gregory Szorc <gregory.szorc@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.

from __future__ import absolute_import

# Allow 'from mercurial import demandimport' to keep working.
import hgdemandimport

demandimport = hgdemandimport