forked from VimPlug/jedi
Merge pull request #1706 from ColdGrub1384/master
Catch 'PermissionError' for unreadable directories
This commit is contained in:
@@ -366,8 +366,11 @@ class Project:
|
||||
|
||||
def _is_potential_project(path):
|
||||
for name in _CONTAINS_POTENTIAL_PROJECT:
|
||||
if path.joinpath(name).exists():
|
||||
return True
|
||||
try:
|
||||
if path.joinpath(name).exists():
|
||||
return True
|
||||
except OSError:
|
||||
continue
|
||||
return False
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user