# HG changeset patch # User Benoit Boissinot # Date 1157630460 -7200 # Node ID 32fd512ca7c0431ab75358ea764c66efe999d14f # Parent fe5c92529d1cac4df7109d0500d2e8a632fd288a hgk.py: use nullid instead of a constant diff -r fe5c92529d1c -r 32fd512ca7c0 hgext/hgk.py --- a/hgext/hgk.py Wed Sep 06 02:15:33 2006 +0200 +++ b/hgext/hgk.py Thu Sep 07 14:01:00 2006 +0200 @@ -86,7 +86,7 @@ change = repo.changelog.read(node1) mmap = repo.manifest.read(change[0]) - empty = "0" * 40; + empty = hg.nullid for f in modified: # TODO get file permissions @@ -94,12 +94,12 @@ hg.short(mmap2[f]), f, f) for f in added: - print ":000000 100664 %s %s N\t%s\t%s" % (empty, + print ":000000 100664 %s %s N\t%s\t%s" % (hg.short(nullid), hg.short(mmap2[f]), f, f) for f in removed: print ":100664 000000 %s %s D\t%s\t%s" % (hg.short(mmap[f]), - empty, + hg.short(nullid), f, f) ##