hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 07 Nov 2019 13:21:20 -0800
changeset 4938 d8033f75a52e
parent 2020 143c8e4dc22d
permissions -rw-r--r--
obslog: use singular name "succnode" for each element of {succnodes} The name that we pass for formatlist() is the name of each element. After this patch, you'll write '{succnodes % "{succnode}"}' instead of the confusing '{succnodes % "{succnodes}"}' (where the two "succnodes" refer to different things. Users can write templates that are compatible across this change by using e.g. '{succnodes % "{if(succnode, succnode, succnodes)}"}'.

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)