Commit fe0b86e1 by Sébastien Eustace

Fix egg-info recursive lookup

parent 228f0f96
...@@ -204,7 +204,8 @@ class Provider: ...@@ -204,7 +204,8 @@ class Provider:
egg_info = next( egg_info = next(
Path(p) Path(p)
for p in glob.glob( for p in glob.glob(
os.path.join(str(tmp_dir), "**", "*.egg-info") os.path.join(str(tmp_dir), "**", "*.egg-info"),
recursive=True,
) )
) )
else: 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