hgext/__init__.py
author Navaneeth Suresh <navaneeths1998@gmail.com>
Sat, 17 Aug 2019 01:49:28 +0530
branchstable
changeset 42811 3332bde53714
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
exchange: abort on pushing bookmarks pointing to secret changesets (issue6159) Until now, if there is a bookmark points to a changeset which is in secret phase, hg will push the bookmark, but not the changeset referenced by that bookmark. This leaves the server bookmarks in a bad state, because that bookmark now points to a revision that does not exist on the server. This patch makes hg to abort on such cases. Differential Revision: https://phab.mercurial-scm.org/D6731

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)