##// END OF EJS Templates
revlog: add files method
Adrian Buehlmann -
r6891:22cb8243 default
parent child Browse files
Show More
@@ -1353,3 +1353,9 b' class revlog(object):'
1353 1353 di = 0
1354 1354
1355 1355 return (dd, di)
1356
1357 def files(self):
1358 res = [ self.indexfile ]
1359 if not self._inline:
1360 res.append(self.datafile)
1361 return res
General Comments 0
You need to be logged in to leave comments. Login now