##// END OF EJS Templates
extensions: avoid including `__index__` in the disabled extension list...
Matt Harbison -
r46710:1ced0842 default
parent child Browse files
Show More
@@ -810,7 +810,7 b' def disabled():'
810 exts = {}
810 exts = {}
811 for name, path in pycompat.iteritems(paths):
811 for name, path in pycompat.iteritems(paths):
812 doc = _disabledhelp(path)
812 doc = _disabledhelp(path)
813 if doc:
813 if doc and name != b'__index__':
814 exts[name] = doc.splitlines()[0]
814 exts[name] = doc.splitlines()[0]
815
815
816 return exts
816 return exts
General Comments 0
You need to be logged in to leave comments. Login now