hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Sat, 05 Oct 2019 23:20:35 -0400
changeset 43100 90b9a7e06c2c
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
formatter: parse name of built-in formatter templates in standard way This slightly makes it easier to add "-Tjson(...)" handling, which should be enabled only if the template specifier doesn't look like a literal template. In other words, it should be handled after "if '{' in tmpl". This makes "log -Tpickle" and "log -Tdebug" abort, which I think is better than just printing "picklepicklepickle...".

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

__path__ = pkgutil.extend_path(__path__, __name__)