##// END OF EJS Templates
rawdata: implement the method for `remotefilelog` too...
marmoute -
r42951:7492899c default
parent child Browse files
Show More
@@ -324,6 +324,9 b' class remotefilelog(object):'
324 text, verifyhash = self._processflags(rawtext, flags, 'read')
324 text, verifyhash = self._processflags(rawtext, flags, 'read')
325 return text
325 return text
326
326
327 def rawdata(self, node):
328 return self.revision(node, raw=False)
329
327 def _processflags(self, text, flags, operation, raw=False):
330 def _processflags(self, text, flags, operation, raw=False):
328 # mostly copied from hg/mercurial/revlog.py
331 # mostly copied from hg/mercurial/revlog.py
329 validatehash = True
332 validatehash = True
General Comments 0
You need to be logged in to leave comments. Login now