Show More
@@ -735,7 +735,7 b' class localrepository(object):' | |||||
735 | return self.wopener(f, mode) |
|
735 | return self.wopener(f, mode) | |
736 |
|
736 | |||
737 | def _link(self, f): |
|
737 | def _link(self, f): | |
738 |
return |
|
738 | return self.wvfs.islink(f) | |
739 |
|
739 | |||
740 | def _loadfilter(self, filter): |
|
740 | def _loadfilter(self, filter): | |
741 | if filter not in self.filterpats: |
|
741 | if filter not in self.filterpats: |
@@ -242,6 +242,9 b' class abstractvfs(object):' | |||||
242 | def isdir(self, path=None): |
|
242 | def isdir(self, path=None): | |
243 | return os.path.isdir(self.join(path)) |
|
243 | return os.path.isdir(self.join(path)) | |
244 |
|
244 | |||
|
245 | def islink(self, path=None): | |||
|
246 | return os.path.islink(self.join(path)) | |||
|
247 | ||||
245 | def makedir(self, path=None, notindexed=True): |
|
248 | def makedir(self, path=None, notindexed=True): | |
246 | return util.makedir(self.join(path), notindexed) |
|
249 | return util.makedir(self.join(path), notindexed) | |
247 |
|
250 |
General Comments 0
You need to be logged in to leave comments.
Login now