hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 08 Feb 2019 23:29:07 -0800
changeset 41634 62bf34f70fe8
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
remotefilelog: replace matchandpats() by match() It doesn't seem like replacing "pats" was useful here. Replacing ("",) by [] doesn't seem like it would make a difference and glob-expansion only happens on Windows. It seem like we should just pass the patterns on to orig() unmodified. Differential Revision: https://phab.mercurial-scm.org/D5920

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