hgext/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 07 Jan 2022 22:23:44 -0800
changeset 48559 b5e1283c0475
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
simplemerge: use same newline detection for :mergediff as for :merge[3] The `:merge` and `:merge3` markers used the newline style detected from the base input. The `:mergediff` style always used LF as newline character. This patch teaches `:mergediff` to use the same detection as the others did. Differential Revision: https://phab.mercurial-scm.org/D11976

from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)