hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 14 Sep 2020 23:47:42 +0200
changeset 45662 64a4b85c4a00
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
salvaged: record salvaged in ChangingFiles at commit time The new code is a simple but effective way to detect this information. We might be able to move it inside the various conditionnal above, but I want to focus on simplicity until we have a full working stack. It is worth noting that if we record the information in the ChangingFiles object, it is not persisted yet. This will comes with later changesets. Differential Revision: https://phab.mercurial-scm.org/D9120

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

__path__ = pkgutil.extend_path(__path__, __name__)