# HG changeset patch # User Simon Farnsworth # Date 1488798555 28800 # Node ID a48c6ac5c13ad33bfdf5dee56b680da4c4cedfa5 # Parent 84e8a68342233039e56dcde08f066a86c940012b hook: give exthooks tags for blocking time The ui.system autogenerated tag isn't really useful - as they're named, let's use the name the user gave us. diff -r 84e8a6834223 -r a48c6ac5c13a mercurial/hook.py --- a/mercurial/hook.py Mon Mar 06 03:19:40 2017 -0800 +++ b/mercurial/hook.py Mon Mar 06 03:09:15 2017 -0800 @@ -142,7 +142,7 @@ cwd = repo.root else: cwd = pycompat.getcwd() - r = ui.system(cmd, environ=env, cwd=cwd) + r = ui.system(cmd, environ=env, cwd=cwd, blockedtag='exthook-%s' % (name,)) duration = util.timer() - starttime ui.log('exthook', 'exthook-%s: %s finished in %0.2f seconds\n',