hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 15 Nov 2019 10:16:27 -0800
changeset 43735 fa246ada356b
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
templates: make {indent("", " ")} be empty indent() is documented to indent all non-empty lines, but it made an exception for the first line, which always got indented. I also made indent() not indent the first line even if an indent override was given for the first line. I think that is what one would usually want. Differential Revision: https://phab.mercurial-scm.org/D7432

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)