comparison mercurial/extensions.py @ 27116:0214cc0a0e97

extensions: properly mark progress as part of core This should have been done as part of or as an immediate follow-up to f5c906878a47, but presumably this feature of extensions.py was forgotten at that time.
author Augie Fackler <augie@google.com>
date Tue, 24 Nov 2015 18:40:16 -0500
parents 9de814b35808
children 060f83d219b9
comparison
equal deleted inserted replaced
27115:cb74f206d39b 27116:0214cc0a0e97
22 ) 22 )
23 23
24 _extensions = {} 24 _extensions = {}
25 _aftercallbacks = {} 25 _aftercallbacks = {}
26 _order = [] 26 _order = []
27 # former extensions now in core - we ignore these if found in hgrc 27 _builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg',
28 _builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'interhg', 'inotify']) 28 'inotify'])
29 29
30 def extensions(ui=None): 30 def extensions(ui=None):
31 if ui: 31 if ui:
32 def enabled(name): 32 def enabled(name):
33 for format in ['%s', 'hgext.%s']: 33 for format in ['%s', 'hgext.%s']: