Mercurial > public > mercurial-scm > hg-stable
diff mercurial/changegroup.py @ 27691:b0d23a55f91e
changegroup: don't add a second trailing '/' in dir name
The paths given from treemanifest.dir() already contains the trailing
slash.
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 08 Jan 2016 14:47:02 -0800 |
parents | 8b01558d5d23 |
children | 5c0fd878779c |
line wrap: on
line diff
--- a/mercurial/changegroup.py Fri Jan 08 14:33:13 2016 -0800 +++ b/mercurial/changegroup.py Fri Jan 08 14:47:02 2016 -0800 @@ -903,8 +903,8 @@ dirlog = self._repo.manifest.dirlog for name, nodes in tmfnodes.iteritems(): # For now, directory headers are simply file headers with - # a trailing '/' on the path. - yield self.fileheader(name + '/') + # a trailing '/' on the path (already in the name). + yield self.fileheader(name) for chunk in self.group(nodes, dirlog(name), nodes.get): yield chunk