# HG changeset patch # User Yuya Nishihara # Date 1525340398 -32400 # Node ID b39958d6b81bb4e4b43d0f136c913d5fd529c5e4 # Parent bdf344aea0eea6bfbc566fb79162e9a349205d66 extensions: remove strip_init=True from _disabledpaths() It's no longer used. diff -r bdf344aea0ee -r b39958d6b81b mercurial/extensions.py --- a/mercurial/extensions.py Thu May 03 18:38:02 2018 +0900 +++ b/mercurial/extensions.py Thu May 03 18:39:58 2018 +0900 @@ -540,9 +540,8 @@ fn = getattr(fn, '_origfunc', None) return result -def _disabledpaths(strip_init=False): - '''find paths of disabled extensions. returns a dict of {name: path} - removes /__init__.py from packages if strip_init is True''' +def _disabledpaths(): + '''find paths of disabled extensions. returns a dict of {name: path}''' import hgext extpath = os.path.dirname( os.path.abspath(pycompat.fsencode(hgext.__file__))) @@ -561,8 +560,6 @@ path = os.path.join(extpath, e, '__init__.py') if not os.path.exists(path): continue - if strip_init: - path = os.path.dirname(path) if name in exts or name in _order or name == '__init__': continue exts[name] = path