parent
5038f6d713
commit
b059188383
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class PluginFinder(importlib.abc.MetaPathFinder):
|
||||||
candidate = path / parts
|
candidate = path / parts
|
||||||
if candidate.is_dir():
|
if candidate.is_dir():
|
||||||
yield candidate
|
yield candidate
|
||||||
elif path.suffix in ('.zip', '.egg', '.whl'):
|
elif path.suffix in ('.zip', '.egg', '.whl') and path.is_file():
|
||||||
if parts in dirs_in_zip(path):
|
if parts in dirs_in_zip(path):
|
||||||
yield candidate
|
yield candidate
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue