diff 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
line wrap: on
line diff
--- a/mercurial/extensions.py	Fri Nov 27 23:10:48 2015 +0900
+++ b/mercurial/extensions.py	Tue Nov 24 18:40:16 2015 -0500
@@ -24,8 +24,8 @@
 _extensions = {}
 _aftercallbacks = {}
 _order = []
-#  former extensions now in core - we ignore these if found in hgrc
-_builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'interhg', 'inotify'])
+_builtin = set(['hbisect', 'bookmarks', 'parentrevspec', 'progress', 'interhg',
+                'inotify'])
 
 def extensions(ui=None):
     if ui: