Mercurial > public > mercurial-scm > hg
diff mercurial/manifest.py @ 2832:e196aa1df169
Start using manifestflags methods
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Sun, 16 Jul 2006 03:14:17 -0500 |
parents | 0b50a580be36 |
children | d0159c5f18bf |
line wrap: on
line diff
--- a/mercurial/manifest.py Sun Jul 16 02:59:20 2006 -0500 +++ b/mercurial/manifest.py Sun Jul 16 03:14:17 2006 -0500 @@ -48,7 +48,7 @@ return map def readflags(self, node): - if node == nullid: return {} # don't upset local cache + if node == nullid: return manifestflags() # don't upset local cache if not self.mapcache or self.mapcache[0] != node: self.read(node) return self.mapcache[2]