hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 25 Mar 2018 18:27:43 +0900
changeset 37447 067e8d1178a2
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
workingctx: build _manifest on filenode() or flags() request I'm not sure if this is the best workaround, but this fixes the following exception: AttributeError: 'workingctx' object has no attribute '_manifestdelta' The short hash '303030303030' seen in the test is node.modifiednodeid. Differential Revision: https://phab.mercurial-scm.org/D2940

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