##// END OF EJS Templates
changegroup: don't add a second trailing '/' in dir name...
Martin von Zweigbergk -
r27691:b0d23a55 default
parent child Browse files
Show More
@@ -903,8 +903,8 b' class cg3packer(cg2packer):'
903 903 dirlog = self._repo.manifest.dirlog
904 904 for name, nodes in tmfnodes.iteritems():
905 905 # For now, directory headers are simply file headers with
906 # a trailing '/' on the path.
907 yield self.fileheader(name + '/')
906 # a trailing '/' on the path (already in the name).
907 yield self.fileheader(name)
908 908 for chunk in self.group(nodes, dirlog(name), nodes.get):
909 909 yield chunk
910 910
General Comments 0
You need to be logged in to leave comments. Login now