Commit fe0b86e1 by Sébastien Eustace

Fix egg-info recursive lookup

parent 228f0f96
......@@ -204,7 +204,8 @@ class Provider:
egg_info = next(
Path(p)
for p in glob.glob(
os.path.join(str(tmp_dir), "**", "*.egg-info")
os.path.join(str(tmp_dir), "**", "*.egg-info"),
recursive=True,
)
)
else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment