hgext3rd/__init__.py
author Gregory Szorc <gregory.szorc@gmail.com>
Thu, 07 Mar 2019 13:47:28 -0800
changeset 41917 ac32e04e887f
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
setup: properly install build_hgextindex for py2exe builds Because the hgbuild class has a private copy of build.sub_commands, modifying build.sub_commands from this code effectively resulted in a no-op. Registering the sub-command on hgbuild actually results in the sub-command running when building Mercurial. Differential Revision: https://phab.mercurial-scm.org/D6093

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