mercurial/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 29 Jul 2020 10:42:09 -0700
changeset 45263 b7444cfc2c05
parent 43106 d783f945a701
child 48875 6000f5b25c9b
permissions -rw-r--r--
templater: stop accepting a single style to stylemap() The code seems to have been for compatibility across d3dbdca92458 (hgweb: don't choke when an inexistent style is requested (issue1901), 2009-11-12). Differential Revision: https://phab.mercurial-scm.org/D8844

# __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