hgext3rd/__init__.py
author Anton Shestakov <av6@dwimlabs.net>
Sat, 03 Jul 2021 10:21:16 +0300
changeset 47492 f03e9d30258e
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
exchange: use "served" repo filter to guess what the server will publish Previously, the second push in the added test would say "push would publish 2 changesets" because _checkpublish() was considering secret changesets to be "pushable" when push command had a --rev argument. Without --rev argument to push command, we already filter the repo properly. Differential Revision: https://phab.mercurial-scm.org/D10948

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

__path__ = pkgutil.extend_path(__path__, __name__)