hgext/hgk.py
changeset 6812 fdf5980bd010
parent 6800 cc7114d96548
parent 6768 e3bb005373b1
child 6958 e01ed40a31a2
--- 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()