hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sun, 21 Mar 2021 16:31:42 +0100
changeset 46825 4821cb414a5c
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
path: extract sub-option logic into its own method We will need to re-use this logic for `path://` so we first extract it into its own method. Differential Revision: https://phab.mercurial-scm.org/D10262

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

__path__ = pkgutil.extend_path(__path__, __name__)