# HG changeset patch # User Martin von Zweigbergk # Date 1452293222 28800 # Node ID b0d23a55f91e9e5d56a55738ad6a59cd5f65126a # Parent 8b01558d5d23ea2e6f7535ef41c2ab5fc4e7c5d8 changegroup: don't add a second trailing '/' in dir name The paths given from treemanifest.dir() already contains the trailing slash. diff -r 8b01558d5d23 -r b0d23a55f91e mercurial/changegroup.py --- 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