hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 12 Nov 2020 17:06:45 -0800
changeset 45870 c10683da6889
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
tests: show how `hg split` can put color codes in commit template With D9255, I made it so `hg split` respects the `commmand-templates.oneline-summary` config. I don't think I realized that the output I modified was being put in a commit message template. The result was that if you have coloring enabled, you get colors in the commit template. This patch show that. The test is unfortunately pretty verbose (like most other `hg split` tests) and shows a bunch of irrelevant "color codes" (templater labels). Differential Revision: https://phab.mercurial-scm.org/D9321

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

__path__ = pkgutil.extend_path(__path__, __name__)