Tagged Questions
4
votes
2answers
333 views
How do you access the commit message in a Mercurial in-process hook?
I've been trying
def debug_hook(ui, repo, **kwargs):
changectx = repo[None]
ui.status('change.desc: %s\n' % changectx.description())
return True
But it always prints an empty string. Is ...