##// END OF EJS Templates
repofilecache: define a 'join' method...
Pierre-Yves David -
r31282:b9228a22 default
parent child Browse files
Show More
@@ -70,6 +70,8 b' class repofilecache(scmutil.filecache):'
70 """All filecache usage on repo are done for logic that should be unfiltered
70 """All filecache usage on repo are done for logic that should be unfiltered
71 """
71 """
72
72
73 def join(self, obj, fname):
74 return obj.join(fname)
73 def __get__(self, repo, type=None):
75 def __get__(self, repo, type=None):
74 if repo is None:
76 if repo is None:
75 return self
77 return self
General Comments 0
You need to be logged in to leave comments. Login now