view hgext3rd/__init__.py @ 43395:2b8be670dcb6 stable

fsmonitor: normalize Watchman paths to bytes Otherwise it will be a str on Python 3 and operations below which operate in the bytes domain will fail. Differential Revision: https://phab.mercurial-scm.org/D7211
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 02 Nov 2019 14:26:06 -0700
parents 2372284d9457
children 6000f5b25c9b
line wrap: on
line source

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

__path__ = pkgutil.extend_path(__path__, __name__)