hgext3rd/__init__.py
author Jun Wu <quark@fb.com>
Mon, 14 Mar 2016 15:05:25 +0000
changeset 28555 1435a8e9b5fe
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
chg: do not redirect stdout to /dev/null Redirecting stdout to /dev/null has unwanted side effects, namely ui.write will stop working. This patch removes the redirection code and helps chg to pass test-bad-extension.t.

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