hgext3rd/__init__.py
author Pulkit Goyal <7895pulkit@gmail.com>
Fri, 09 Feb 2018 13:36:50 +0530
changeset 37194 320b1f95f676
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
infinitepush: drop `--list-remote`, `--remote-path` flags to bookmark cmd The extension adds these two flags to list remote bookmarks using the `hg bookmark` command. These are not required in core currently and needs some discussion before getting them in, so let's drop them for now. This makes us deleting the wrapping of `hg bookmark` command on client side. The end goal here is to have minimal or no wrapping at client side. Differential Revision: https://phab.mercurial-scm.org/D2103

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