hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 19 Nov 2021 09:17:30 -0800
changeset 48364 220506bb213e
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
patch: add hint about mangled whitespace on bad patch One of the most common reasons that a patch doesn't apply is because its whitespace has been mangled (e.g. by their mail client or though copy&paste). Let's provide a hint about that. Differential Revision: https://phab.mercurial-scm.org/D11825

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

__path__ = pkgutil.extend_path(__path__, __name__)