hgext3rd/__init__.py
author Augie Fackler <augie@google.com>
Fri, 22 Jan 2021 15:43:06 -0500
changeset 46468 11ce2977572f
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
histedit: rip out mysterious catch-all ignore curses.error handler I have no idea why this was here, and ripping it out doesn't obviously break anything for me (tests all pass, I can poke around chistedit UI a bit without issue), so I'm thinking we should rip it out and see if we get bug reports. Differential Revision: https://phab.mercurial-scm.org/D9855

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

__path__ = pkgutil.extend_path(__path__, __name__)