mercurial/hook.py
changeset 8209 a1a5a57efe90
parent 8206 cce63ef1045b
child 8225 46293a0c7e9f
--- a/mercurial/hook.py	Sun Apr 26 16:50:44 2009 -0500
+++ b/mercurial/hook.py	Sun Apr 26 16:50:44 2009 -0500
@@ -104,7 +104,7 @@
         os.dup2(sys.__stderr__.fileno(), sys.__stdout__.fileno())
 
     try:
-        for hname, cmd in util.sort(ui.configitems('hooks')):
+        for hname, cmd in ui.configitems('hooks'):
             if hname.split('.')[0] != name or not cmd:
                 continue
             if callable(cmd):