diff -r 2134d6c09432 -r fdf5980bd010 hgext/hgk.py --- a/hgext/hgk.py Fri Jul 11 14:40:44 2008 +0200 +++ b/hgext/hgk.py Sun Jul 20 20:00:02 2008 +0200 @@ -104,7 +104,8 @@ ctx = repo[n] ui.write("tree %s\n" % short(ctx.changeset()[0])) # use ctx.node() instead ?? for p in ctx.parents(): - ui.write("parent %s\n" % short(p.node())) + ui.write("parent %s\n" % p) + date = ctx.date() description = ctx.description().replace("\0", "") lines = description.splitlines()