##// END OF EJS Templates
git: actually copy treemanifest instances in .copy() (issue6398)...
Augie Fackler -
r45986:c8695439 default
parent child Browse files
Show More
@@ -217,7 +217,9 b' class gittreemanifest(object):'
217 return b''
217 return b''
218
218
219 def copy(self):
219 def copy(self):
220 pass
220 return gittreemanifest(
221 self._git_repo, self._tree, dict(self._pending_changes)
222 )
221
223
222 def items(self):
224 def items(self):
223 for f in self:
225 for f in self:
General Comments 0
You need to be logged in to leave comments. Login now