##// END OF EJS Templates
branchmap: dynamically resolve type of branchcache class...
Pulkit Goyal -
r42280:f0fa0fc4 default
parent child Browse files
Show More
@@ -305,7 +305,7 b' class branchcache(object):'
305
305
306 def copy(self):
306 def copy(self):
307 """return an deep copy of the branchcache object"""
307 """return an deep copy of the branchcache object"""
308 return branchcache(
308 return type(self)(
309 self._entries, self.tipnode, self.tiprev, self.filteredhash,
309 self._entries, self.tipnode, self.tiprev, self.filteredhash,
310 self._closednodes)
310 self._closednodes)
311
311
General Comments 0
You need to be logged in to leave comments. Login now