##// END OF EJS Templates
localrepo: rename proxycls to filteredrepo...
Jun Wu -
r31279:052bc876 default
parent child Browse files
Show More
@@ -484,9 +484,9 b' class localrepository(object):'
484 """Return a filtered version of a repository"""
484 """Return a filtered version of a repository"""
485 # build a new class with the mixin and the current class
485 # build a new class with the mixin and the current class
486 # (possibly subclass of the repo)
486 # (possibly subclass of the repo)
487 class proxycls(repoview.repoview, self.unfiltered().__class__):
487 class filteredrepo(repoview.repoview, self.unfiltered().__class__):
488 pass
488 pass
489 return proxycls(self, name)
489 return filteredrepo(self, name)
490
490
491 @repofilecache('bookmarks', 'bookmarks.current')
491 @repofilecache('bookmarks', 'bookmarks.current')
492 def _bookmarks(self):
492 def _bookmarks(self):
General Comments 0
You need to be logged in to leave comments. Login now