mercurial/extensions.py
changeset 38163 b39958d6b81b
parent 38162 bdf344aea0ee
child 38343 2c1d983872f6
--- 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