hgext/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 13 Jun 2018 14:28:39 -0700
changeset 38313 fabfbbf4dee2
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
templatefilters: rename commonprefix to commondir Two reasons: * It makes it clearer that it's not a generic common string prefix (e.g. commonprefix(["bar", "baz"]) is not "ba", but "") * If we ever want a filter for generic common string prefix, then the name is now available for that. "commondir" does not describe the prefix-ness, however. I'm happy to rename it "commondirprefix" or "commonprefixdir" if others prefer. Differential Revision: https://phab.mercurial-scm.org/D3731

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)