mercurial/manifest.py
changeset 35586 fbf1a5d680ea
parent 34345 05167447f90d
child 36095 59adb3051718
equal deleted inserted replaced
35585:35fb3367f72d 35586:fbf1a5d680ea
   808         self._load()
   808         self._load()
   809         for p in sorted(itertools.chain(self._dirs, self._files)):
   809         for p in sorted(itertools.chain(self._dirs, self._files)):
   810             if p in self._files:
   810             if p in self._files:
   811                 yield self._subpath(p)
   811                 yield self._subpath(p)
   812             else:
   812             else:
   813                 for f in self._dirs[p].iterkeys():
   813                 for f in self._dirs[p]:
   814                     yield f
   814                     yield f
   815 
   815 
   816     def keys(self):
   816     def keys(self):
   817         return list(self.iterkeys())
   817         return list(self.iterkeys())
   818 
   818