hgext/__init__.py
author Augie Fackler <augie@google.com>
Fri, 02 Mar 2018 09:09:38 -0500
changeset 36574 45f149bf08d1
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
templatekw: fix dict construction in _showlist to not mix bytes and strs What we had was fine on Python 2, but was slightly wrong on Python 3. This works on both. Differential Revision: https://phab.mercurial-scm.org/D2554

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)