changeset 243:9a9ea2d1d3c4

fix heads for rev 0 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 fix heads for rev 0 manifest hash: 7b2f4607f6c54b660d63ac35ba953576464e1511 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCofyyywK+sNU5EO8RAjkeAJ4rfOQ9HV+gpndsTzuoS6R3f+mzEQCfcb0P IWhTz6XDpTWEkjzcK++mZ4k= =mINY -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sat, 04 Jun 2005 11:10:42 -0800
parents a2edb4481f19
children 43105253cf5e
files mercurial/revlog.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/revlog.py	Fri Jun 03 18:42:53 2005 -0800
+++ b/mercurial/revlog.py	Sat Jun 04 11:10:42 2005 -0800
@@ -159,7 +159,7 @@
     def heads(self):
         p = {}
         h = []
-        for r in range(self.count() - 1, 0, -1):
+        for r in range(self.count() - 1, -1, -1):
             n = self.node(r)
             if n not in p:
                 h.append(n)