hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 18 May 2023 17:07:43 -0700
changeset 50530 b361e9da3c3b
parent 48875 6000f5b25c9b
child 51863 f4733654f144
permissions -rw-r--r--
exchange: allow passing no includes/excludes to `pull()` I would expect that `exchange.pull(includepats=[])` results in an empty list of include patterns to be passed to the remote, but it doesn't currently because we check for any truthy value instead of checking specifically for `not None`.

# name space package to host third party extensions
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)