author | Christian Ebert <blacktrash@gmx.net> |
Sat, 16 Dec 2006 15:42:27 +0100 | |
branch | updatehook |
changeset 20 | 6dc2b4268920 |
parent 7 | e5f131217f87 |
child 26 | bda0dec1aaf1 |
permissions | -rw-r--r-- |
# $Hg$ import kwexpander def pretxnkw(ui, repo, hooktype, **args): '''Important: returns False on success, True on failure.''' if hooktype != 'pretxncommit': # bail out with error return True tip = repo.changelog.tip() modified, added = repo.status()[:2] candidates = modified + added # TODO: check whether we need parent1&2 like in updatekw return kwexpander.expandkw(ui, repo, tip, args['node'][0:12], candidates, update=False)