mercurial/hook.py
changeset 38628 539f9708b980
parent 38491 72286f9e324f
child 38629 38dfd308fe9d
--- a/mercurial/hook.py	Sat Jul 07 22:13:56 2018 -0400
+++ b/mercurial/hook.py	Sat Jul 07 23:47:49 2018 -0400
@@ -181,7 +181,7 @@
     """return all hooks items ready to be sorted"""
     hooks = {}
     for name, cmd in ui.configitems('hooks', untrusted=_untrusted):
-        if not name.startswith('priority'):
+        if not name.startswith('priority.'):
             priority = ui.configint('hooks', 'priority.%s' % name, 0)
             hooks[name] = (-priority, len(hooks), name, cmd)
     return hooks