hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 13 Sep 2020 15:59:23 +0900
branchstable
changeset 45503 bd5b2b29b82d
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
py3: fix formatting of LookupError for workingctx Spotted while writing broken tests for "hg grep -fr'wdir()'". basectx._fileinfo() raises ManifestLookupError(self._node, ..), but _node of the workingctx is None for historical reasons.

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

__path__ = pkgutil.extend_path(__path__, __name__)