Mercurial > public > mercurial-scm > hg
diff hgext/hgk.py @ 3578:3b4e00cba57a
Define and use nullrev (revision of nullid) instead of -1.
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Sun, 29 Oct 2006 10:53:51 +0100 |
parents | 0e68608bd11d |
children | 792e61e9a00a |
line wrap: on
line diff
--- a/hgext/hgk.py Sat Oct 28 23:37:59 2006 -0300 +++ b/hgext/hgk.py Sun Oct 29 10:53:51 2006 +0100 @@ -78,8 +78,8 @@ if not changes: changes = repo.changelog.read(n) print "tree %s" % (hg.short(changes[0])) - if i1 != -1: print "parent %s" % (h1) - if i2 != -1: print "parent %s" % (h2) + if i1 != hg.nullrev: print "parent %s" % (h1) + if i2 != hg.nullrev: print "parent %s" % (h2) date_ar = changes[2] date = int(float(date_ar[0])) lines = changes[4].splitlines() @@ -241,10 +241,10 @@ date = changes[2][0] print "%s %s:%s" % (date, h, mask), mask = is_reachable(want_sha1, reachable, p1) - if i1 != -1 and mask > 0: + if i1 != hg.nullrev and mask > 0: print "%s:%s " % (h1, mask), mask = is_reachable(want_sha1, reachable, p2) - if i2 != -1 and mask > 0: + if i2 != hg.nullrev and mask > 0: print "%s:%s " % (h2, mask), print "" if maxnr and count >= maxnr: