##// END OF EJS Templates
manifest: have context's dirs() call its manifest's dirs()...
Drew Gottlieb -
r24323:4c7c6bea default
parent child Browse files
Show More
@@ -266,12 +266,9 b' class basectx(object):'
266 diffopts = patch.diffopts(self._repo.ui, opts)
266 diffopts = patch.diffopts(self._repo.ui, opts)
267 return patch.diff(self._repo, ctx2, self, match=match, opts=diffopts)
267 return patch.diff(self._repo, ctx2, self, match=match, opts=diffopts)
268
268
269 @propertycache
269 def dirs(self):
270 def _dirs(self):
270 return self._manifest.dirs()
271 return scmutil.dirs(self._manifest)
272
271
273 def dirs(self):
274 return self._dirs
275
272
276 def dirty(self, missing=False, merge=True, branch=True):
273 def dirty(self, missing=False, merge=True, branch=True):
277 return False
274 return False
General Comments 0
You need to be logged in to leave comments. Login now