hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Wed, 14 Apr 2021 12:57:55 +0200
changeset 46945 c1749dd31cdf
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
remotefilelog: use the right expandpath in to expand `~` Given the context where path is most likely a file system path, I suspect that the initial author confused ui.expandpath and util.expandpath (a proxy for os.path.expanduser and co) Differential Revision: https://phab.mercurial-scm.org/D10411

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

__path__ = pkgutil.extend_path(__path__, __name__)