Skip to content

Commit

Permalink
Fix egg-info recursive lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Aug 31, 2018
1 parent 228f0f9 commit fe0b86e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion poetry/puzzle/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ def search_for_vcs(self, dependency): # type: (VCSDependency) -> List[Package]
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:
Expand Down

0 comments on commit fe0b86e

Please sign in to comment.