##// END OF EJS Templates
histedit: add missing b prefix to a string...
histedit: add missing b prefix to a string If i18n is disabled (such as via HGPLAIN=1), `_()` doesn't convert from str to bytes, so this raises a TypeError on py3. Differential Revision: https://phab.mercurial-scm.org/D8354

File last commit:

r43346:2372284d default
r45149:8fca7e84 5.3.2 stable
Show More
__init__.py
5 lines | 158 B | text/x-python | PythonLexer
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 # name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
Augie Fackler
formatting: blacken the codebase...
r43346
Pierre-Yves David
extensions: also search for extension in the 'hgext3rd' package...
r28541 __path__ = pkgutil.extend_path(__path__, __name__)