##// END OF EJS Templates
narrowrevlog: add a TODO around remotefilelog moving to core...
Augie Fackler -
r36114:66b4ffe9 default
parent child Browse files
Show More
@@ -156,6 +156,10 b' def makenarrowfilelog(fl, narrowmatch):'
156 # rename-checking logic when on remotefilelog. This
156 # rename-checking logic when on remotefilelog. This
157 # might be incorrect on other non-revlog-based storage
157 # might be incorrect on other non-revlog-based storage
158 # engines, but for now this seems to be fine.
158 # engines, but for now this seems to be fine.
159 #
160 # TODO: when remotefilelog is in core, improve this to
161 # explicitly look for remotefilelog instead of cheating
162 # with a hasattr check.
159 if util.safehasattr(self, 'node'):
163 if util.safehasattr(self, 'node'):
160 node = self.node(rev)
164 node = self.node(rev)
161 # Because renamed() is overridden above to
165 # Because renamed() is overridden above to
General Comments 0
You need to be logged in to leave comments. Login now